Spaces:
Runtime error
Runtime error
File size: 268 Bytes
57e3690 |
1 2 3 4 5 6 7 8 |
find_package (Threads REQUIRED) set(TARGET vulkan-shaders-gen) add_executable(${TARGET} vulkan-shaders-gen.cpp) install(TARGETS ${TARGET} RUNTIME) target_compile_features(${TARGET} PRIVATE cxx_std_11) target_link_libraries(vulkan-shaders-gen PUBLIC Threads::Threads) |