mirror of
https://github.com/yuzu-emu/sirit.git
synced 2025-01-05 14:15:29 +00:00
29 lines
654 B
CMake
29 lines
654 B
CMake
add_library(sirit
|
|
../include/sirit/sirit.h
|
|
sirit.cpp
|
|
op.cpp
|
|
op.h
|
|
stream.cpp
|
|
stream.h
|
|
operand.cpp
|
|
operand.h
|
|
literal_number.cpp
|
|
literal_number.h
|
|
literal_string.cpp
|
|
literal_string.h
|
|
common_types.h
|
|
insts.h
|
|
insts/type.cpp
|
|
insts/constant.cpp
|
|
insts/function.cpp
|
|
insts/flow.cpp
|
|
insts/debug.cpp
|
|
insts/memory.cpp
|
|
insts/annotation.cpp
|
|
insts/misc.cpp
|
|
)
|
|
target_include_directories(sirit
|
|
PUBLIC ../include
|
|
PRIVATE . ${SPIRV-Headers_SOURCE_DIR}/include
|
|
INTERFACE ${SPIRV-Headers_SOURCE_DIR}/include)
|