]> git.lyx.org Git - features.git/blob - development/cmake/src/mathed/CMakeLists.txt
65ec0432950fde0e9f2786ce6cfd9af3ad9b7ec3
[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/InsetMathMBox.C
15         ${TOP_SRC_DIR}/src/mathed/InsetFormulaMacro.C)
16
17 lyx_add_msvc_pch(mathed)
18
19 include_directories(${TOP_SRC_DIR}/src/mathed)
20
21 add_library(mathed STATIC ${mathed_sources} ${mathed_headers})
22
23 project_source_group("${GROUP_CODE}" mathed_sources mathed_headers)
24