-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
41 lines (35 loc) · 909 Bytes
/
CMakeLists.txt
File metadata and controls
41 lines (35 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
if(SC_PYTHON_GENERATOR)
include_directories(
${SC_SOURCE_DIR}/include
${SC_SOURCE_DIR}/include/express
)
add_definitions(-DHAVE_CONFIG_H)
set(exp2python_SOURCES
src/classes_misc_python.c
../express/fedex.c
src/fedex_main_python.c
src/classes_wrapper_python.cc
src/classes_python.c
src/selects_python.c
src/multpass_python.c
../exp2cxx/collect.cc
../exp2cxx/complexlist.cc
../exp2cxx/entlist.cc
../exp2cxx/multlist.cc
../exp2cxx/orlist.cc
../exp2cxx/entnode.cc
../exp2cxx/expressbuild.cc
../exp2cxx/non-ors.cc
../exp2cxx/match-ors.cc
../exp2cxx/trynext.cc
../exp2cxx/write.cc
../exp2cxx/print.cc
)
SC_ADDEXEC(exp2python SOURCES ${exp2python_SOURCES} LINK_LIBRARIES express)
endif(SC_PYTHON_GENERATOR)
# Local Variables:
# tab-width: 8
# mode: cmake
# indent-tabs-mode: t
# End:
# ex: shiftwidth=2 tabstop=8