]> git.lyx.org Git - lyx.git/blob - development/cmake/src/insets/CMakeLists.txt
add copyright notice
[lyx.git] / development / cmake / src / insets / 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(insets)
8
9 file(GLOB insets_sources ${TOP_SRC_DIR}/src/insets/*.C)
10 file(GLOB insets_headers ${TOP_SRC_DIR}/src/insets/*.h)
11
12 list(REMOVE_ITEM insets_sources ${TOP_SRC_DIR}/src/insets/insettheorem.C)
13
14 include_directories(${TOP_SRC_DIR}/src/insets)
15
16 add_library(insets STATIC ${insets_sources} ${insets_headers})
17
18 project_source_group("${GROUP_CODE}" insets_sources insets_headers)
19