adjust CMake to controllers removal.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20837 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-10-08 07:12:58 +00:00
parent 14eb8d4d0a
commit 2e70b42c18
2 changed files with 0 additions and 30 deletions

View File

@ -8,7 +8,6 @@ project(frontends)
include_directories(${TOP_SRC_DIR}/src/frontends)
add_subdirectory(controllers)
add_subdirectory(qt4)
file(GLOB frontends_sources ${TOP_SRC_DIR}/src/frontends/${LYX_CPP_FILES})

View File

@ -1,29 +0,0 @@
# This file is part of LyX, the document processor.
# Licence details can be found in the file COPYING.
#
# Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
#
project(controllers)
file(GLOB controllers_sources
${TOP_SRC_DIR}/src/frontends/controllers/${LYX_CPP_FILES})
file(GLOB controllers_headers
${TOP_SRC_DIR}/src/frontends/controllers/${LYX_HPP_FILES})
lyx_add_msvc_pch(controllers)
include_directories(${TOP_SRC_DIR}/src/frontends/controllers)
if(NOT MERGE_FILES)
add_library(controllers ${library_type}
${controllers_sources} ${controllers_headers})
else()
lyx_const_touched_files(_allinone controllers_sources)
add_library(controllers ${library_type} ${_allinone_files})
endif()
target_link_libraries(controllers boost_regex boost_filesystem)
project_source_group("${GROUP_CODE}" controllers_sources controllers_headers)