forked from stepcode/stepcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
53 lines (47 loc) · 884 Bytes
/
CMakeLists.txt
File metadata and controls
53 lines (47 loc) · 884 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
41
42
43
44
45
46
47
48
49
50
51
52
set(FEDEX_COMMON_SRCS
classes_misc.c
../express/fedex.c
)
set(exp2cxx_SOURCES
${FEDEX_COMMON_SRCS}
trace_fprintf.c
fedex_main.c
classes_wrapper.cc
classes.c
classes_attribute.c
classes_entity.c
classes_type.c
class_strings.c
selects.c
multpass.c
rules.c
collect.cc
complexlist.cc
entlist.cc
multlist.cc
orlist.cc
entnode.cc
expressbuild.cc
non-ors.cc
match-ors.cc
trynext.cc
write.cc
print.cc
genCxxFilenames.c
)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${SC_SOURCE_DIR}/include
${SC_SOURCE_DIR}/include/exppp
${SC_SOURCE_DIR}/include/express
)
SC_ADDEXEC(exp2cxx SOURCES ${exp2cxx_SOURCES} LINK_LIBRARIES libexppp express)
if(SC_ENABLE_TESTING)
add_subdirectory(test)
endif(SC_ENABLE_TESTING)
# Local Variables:
# tab-width: 8
# mode: cmake
# indent-tabs-mode: t
# End:
# ex: shiftwidth=2 tabstop=8