sirit/src/CMakeLists.txt

29 lines
651 B
CMake
Raw Normal View History

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