sirit/src/CMakeLists.txt

26 lines
548 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-08-26 00:34:06 +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-08-26 00:16:37 +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-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)