]> git.lyx.org Git - features.git/blob - development/cmake/src/mathed/CMakeLists.txt
* mathed/CMakeLists.txt: do not exclude InsetMathMBox.C
[features.git] / development / cmake / src / mathed / 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(mathed)
8
9 file(GLOB mathed_sources ${TOP_SRC_DIR}/src/mathed/*.C)
10 file(GLOB mathed_headers ${TOP_SRC_DIR}/src/mathed/*.h)
11
12 list(REMOVE_ITEM mathed_sources
13         ${TOP_SRC_DIR}/src/mathed/InsetMathXYArrow.C
14         ${TOP_SRC_DIR}/src/mathed/InsetFormulaMacro.C)
15
16 lyx_add_msvc_pch(mathed)
17
18 include_directories(${TOP_SRC_DIR}/src/mathed)
19
20 add_library(mathed STATIC ${mathed_sources} ${mathed_headers})
21
22 project_source_group("${GROUP_CODE}" mathed_sources mathed_headers)
23