blob: 4da3bcff798b2d4363e4def44c95e29fd8152874 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
set(CODEGEN_ROSE_SRC
src/CG_roseBuilder.cc
src/CG_roseRepr.cc
src/rose_attributes.cc
)
include_directories(
include
${OMEGA_INC}
${ROSEHOME}/include
${ROSEHOME}/include/rose
${BOOSTHOME}/include
)
add_library(rosecg ${CODEGEN_ROSE_SRC})
install(TARGETS rosecg
DESTINATION lib)
install(DIRECTORY include/code_gen
DESTINATION include)
|