mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-05-08 01:54:25 +02:00
8 lines
268 B
CMake
8 lines
268 B
CMake
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_17)
|
|
target_link_libraries(vulkan-shaders-gen PUBLIC Threads::Threads)
|