sirit/src/CMakeLists.txt

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