]> git.lyx.org Git - lyx.git/commitdiff
adjust CMake to controllers removal.
authorAbdelrazak Younes <younes@lyx.org>
Mon, 8 Oct 2007 07:12:58 +0000 (07:12 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Mon, 8 Oct 2007 07:12:58 +0000 (07:12 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20837 a592a061-630c-0410-9148-cb99ea01b6c8

development/cmake/src/frontends/CMakeLists.txt
development/cmake/src/frontends/controllers/CMakeLists.txt [deleted file]

index afcdd8620fe23ecb0fcabf9f7d67447a20cd7971..d7dfa508f9d3c6d09b020e568d34ad98c6b269e2 100644 (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})
diff --git a/development/cmake/src/frontends/controllers/CMakeLists.txt b/development/cmake/src/frontends/controllers/CMakeLists.txt
deleted file mode 100644 (file)
index 909858b..0000000
+++ /dev/null
@@ -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)
-