1
0
Fork 0
mirror of https://git.suyu.dev/suyu/sirit.git synced 2025-01-05 10:16:03 +00:00
sirit/src/CMakeLists.txt

34 lines
776 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
literal_number.cpp
literal_number.h
literal_string.cpp
literal_string.h
2018-10-23 08:45:56 +01:00
common_types.h
2018-08-28 08:05:47 +01:00
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-10-31 07:26:35 +00:00
insts/misc.cpp
2018-11-02 16:38:33 +00:00
insts/logical.cpp
2018-11-03 02:24:10 +00:00
insts/conversion.cpp
insts/bit.cpp
2018-11-03 02:49:41 +00:00
insts/arithmetic.cpp
2018-11-04 06:03:06 +00:00
insts/extension.cpp
2018-11-12 18:22:26 +00:00
insts/image.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)