mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-02-03 01:20:38 +00:00
8 lines
229 B
CMake
8 lines
229 B
CMake
|
if (WHISPER_SDL2)
|
||
|
set(TARGET wchess)
|
||
|
add_executable(${TARGET} wchess.cmd.cpp)
|
||
|
|
||
|
include(DefaultTargetOptions)
|
||
|
|
||
|
target_link_libraries(${TARGET} PRIVATE libwchess common common-sdl ${CMAKE_THREAD_LIBS_INIT})
|
||
|
endif ()
|