Spaces:
Build error
Build error
File size: 393 Bytes
5a29263 |
1 2 3 4 5 6 7 8 9 10 11 12 |
find_package (Threads REQUIRED) find_program(GLSLC_EXECUTABLE glslc) if(NOT GLSLC_EXECUTABLE) message(FATAL_ERROR "glslc not found.") endif() set(TARGET vulkan-shaders-gen) add_executable(${TARGET} vulkan-shaders-gen.cpp) install(TARGETS ${TARGET} RUNTIME) target_compile_features(${TARGET} PRIVATE cxx_std_17) target_link_libraries(vulkan-shaders-gen PUBLIC Threads::Threads) |