From: Abdelrazak Younes Date: Mon, 8 Oct 2007 07:12:58 +0000 (+0000) Subject: adjust CMake to controllers removal. X-Git-Tag: 1.6.10~7940 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2e70b42c18d79c39521978d0806bb3907338e076;p=lyx.git adjust CMake to controllers removal. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20837 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/cmake/src/frontends/CMakeLists.txt b/development/cmake/src/frontends/CMakeLists.txt index afcdd8620f..d7dfa508f9 100644 --- a/development/cmake/src/frontends/CMakeLists.txt +++ b/development/cmake/src/frontends/CMakeLists.txt @@ -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 index 909858bc9c..0000000000 --- a/development/cmake/src/frontends/controllers/CMakeLists.txt +++ /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, -# - -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) -