1
0
mirror of https://github.com/ggerganov/whisper.cpp.git synced 2025-05-31 15:05:58 +02:00
Andy Maloney 84c6b42e65
cmake : update to 3.19 ()
- update from 3.0 (from 2014) to 3.19 (from 2020)
- move some global setting onto the targets (through a cmake include)
2023-01-05 21:22:48 +02:00

7 lines
161 B
CMake

set(TARGET bench)
add_executable(${TARGET} bench.cpp)
include(DefaultTargetOptions)
target_link_libraries(${TARGET} PRIVATE whisper ${CMAKE_THREAD_LIBS_INIT})