mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-22 14:02:21 +00: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})
|