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