summaryrefslogtreecommitdiff
path: root/lib/chillcg/CMakeLists.txt
blob: b204c6984e810644eda5b5be46d750f2c0de0ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set(CODEGEN_CHILL_SRC
    src/CG_chillBuilder.cc
    src/CG_chillRepr.cc
    )

include_directories(
    include
    ${OMEGA_INC}
    )

add_library(chillcg ${CODEGEN_CHILL_SRC})

install(TARGETS chillcg
        DESTINATION lib)

install(DIRECTORY include/code_gen
    DESTINATION include)