]> git.lyx.org Git - features.git/blob - development/cmake/src/frontends/CMakeLists.txt
add copyright notice
[features.git] / development / cmake / src / frontends / CMakeLists.txt
1 # This file is part of LyX, the document processor.
2 # Licence details can be found in the file COPYING.
3 #
4 # Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
5 #
6
7 project(frontends)
8
9 include_directories(${TOP_SRC_DIR}/src/frontends)
10
11 add_subdirectory(controllers) 
12 add_subdirectory(${qt_postfix}) 
13
14
15
16 file(GLOB frontends_sources ${TOP_SRC_DIR}/src/frontends/*.C)
17 file(GLOB frontends_headers ${TOP_SRC_DIR}/src/frontends/*.h)
18
19 add_library(frontends STATIC ${frontends_sources} ${frontends_headers})
20
21 project_source_group("${GROUP_CODE}" frontends_sources frontends_headers)
22