mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 16:44:13 +01:00
7 lines
174 B
CMake
7 lines
174 B
CMake
|
set(TARGET quantize)
|
||
|
add_executable(${TARGET} quantize.cpp)
|
||
|
|
||
|
include(DefaultTargetOptions)
|
||
|
|
||
|
target_link_libraries(${TARGET} PRIVATE common whisper ${CMAKE_THREAD_LIBS_INIT})
|