6 lines
170 B
CMake
6 lines
170 B
CMake
|
|
|
||
|
|
set(TARGET vulkan-shaders-gen)
|
||
|
|
add_executable(${TARGET} vulkan-shaders-gen.cpp)
|
||
|
|
install(TARGETS ${TARGET} RUNTIME)
|
||
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
|