]> git.lyx.org Git - lyx.git/blob - development/cmake/src/insets/CMakeLists.txt
more flexible msvc project folder generation, flat is default
[lyx.git] / development / cmake / src / insets / CMakeLists.txt
1 project(insets)
2
3 file(GLOB insets_sources ${TOP_SRC_DIR}/src/insets/*.C)
4 file(GLOB insets_headers ${TOP_SRC_DIR}/src/insets/*.h)
5
6 list(REMOVE_ITEM insets_sources ${TOP_SRC_DIR}/src/insets/insettheorem.C)
7
8 include_directories(${TOP_SRC_DIR}/src/insets)
9
10 add_library(insets STATIC ${insets_sources} ${insets_headers})
11
12 project_source_group("${GROUP_CODE}" insets_sources insets_headers)
13