mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-02-09 04:01:09 +00:00
20 lines
329 B
CMake
20 lines
329 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}>"
|
|
)
|
|
|
|
add_executable(test-chessboard test-chessboard.cpp Chessboard.cpp)
|