-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
44 lines (38 loc) · 844 Bytes
/
CMakeLists.txt
File metadata and controls
44 lines (38 loc) · 844 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
set(LIBEXPPP_SOURCES
exppp.c
pretty_alg.c
pretty_case.c
pretty_entity.c
pretty_expr.c
pretty_express.c
pretty_func.c
pretty_loop.c
pretty_proc.c
pretty_ref.c
pretty_rule.c
pretty_schema.c
pretty_scope.c
pretty_stmt.c
pretty_subtype.c
pretty_type.c
pretty_where.c
)
SET(EXPPP_SOURCES
../express/fedex.c
exppp-main.c
)
include_directories(
${SC_SOURCE_DIR}/include
${SC_SOURCE_DIR}/include/exppp
${SC_SOURCE_DIR}/src/base
${SC_SOURCE_DIR}/src/express
)
if(BORLAND)
add_definitions( -D__STDC__ )
endif()
SC_ADDLIB(libexppp "${LIBEXPPP_SOURCES}" "express;base")
set_target_properties(libexppp PROPERTIES PREFIX "")
SC_ADDEXEC(exppp "${EXPPP_SOURCES}" "libexppp;express;base")
if( ENABLE_TESTING )
add_subdirectory(test)
endif( ENABLE_TESTING )