sirit/src/CMakeLists.txt

28 lines
589 B
Text
Raw Normal View History

2018-08-23 04:59:57 -03:00
add_library(sirit
2018-08-25 20:16:37 -03:00
../include/sirit/sirit.h
2018-08-23 04:59:57 -03:00
sirit.cpp
2018-08-25 20:34:06 -03:00
op.cpp
op.h
2018-08-25 20:16:37 -03:00
stream.cpp
stream.h
operand.cpp
operand.h
2018-08-27 00:29:40 -03:00
literal.cpp
2018-08-28 04:16:52 -03:00
lnumber.cpp
lnumber.h
lstring.cpp
lstring.h
2018-08-25 20:16:37 -03:00
common_types.h
2018-08-28 04:05:47 -03:00
insts.h
insts/type.cpp
insts/constant.cpp
insts/function.cpp
insts/flow.cpp
2018-08-31 04:40:15 -03:00
insts/debug.cpp
2018-10-18 04:27:17 -03:00
insts/memory.cpp
2018-08-23 04:59:57 -03:00
)
target_include_directories(sirit
2018-08-25 20:16:37 -03:00
PUBLIC ../include
PRIVATE . ${SPIRV-Headers_SOURCE_DIR}/include
INTERFACE ${SPIRV-Headers_SOURCE_DIR}/include)