mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-20 13:13:07 +00:00
10 lines
155 B
CMake
10 lines
155 B
CMake
|
set(CMAKE_CXX_STANDARD 11)
|
||
|
|
||
|
add_subdirectory(libwchess)
|
||
|
|
||
|
if (EMSCRIPTEN)
|
||
|
add_subdirectory(wchess.wasm)
|
||
|
else()
|
||
|
add_subdirectory(wchess.cmd)
|
||
|
endif()
|