mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-02-10 12:41:10 +00:00
17 lines
258 B
CMake
17 lines
258 B
CMake
|
add_library(libwchess
|
||
|
WChess.cpp
|
||
|
WChess.h
|
||
|
Chessboard.cpp
|
||
|
Chessboard.h
|
||
|
)
|
||
|
|
||
|
target_link_libraries(libwchess
|
||
|
PUBLIC
|
||
|
whisper
|
||
|
)
|
||
|
|
||
|
target_include_directories(libwchess
|
||
|
PUBLIC
|
||
|
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>"
|
||
|
)
|