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})
|