sirit/src/CMakeLists.txt

29 lines
623 B
Text
Raw Normal View History

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