forked from extern/whisper.cpp
84c6b42e65
- update from 3.0 (from 2014) to 3.19 (from 2020) - move some global setting onto the targets (through a cmake include)
7 lines
159 B
CMake
7 lines
159 B
CMake
set(TARGET main)
|
|
add_executable(${TARGET} main.cpp)
|
|
|
|
include(DefaultTargetOptions)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE whisper ${CMAKE_THREAD_LIBS_INIT})
|