mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-19 04:37:51 +00:00
fd99ece8e3
* wchess: whisper assisted chess * wchess: fix allowed moves in check * wchess: touchstart, touchend events * wchess: css, disabled button * wchess : html touches * wchess : minor fixes and code style * wchess : bump encoder context to 1280 * wchess : index.html * wchess : fix CI warnings * wchess : add array header * wchess : build static library * wchess : display grammar * wchess : update UX * wchess : add comment * wchess : add README --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
20 lines
344 B
CMake
20 lines
344 B
CMake
add_library(wchess-core STATIC
|
|
WChess.cpp
|
|
WChess.h
|
|
Chessboard.cpp
|
|
Chessboard.h
|
|
)
|
|
|
|
target_link_libraries(wchess-core
|
|
PUBLIC
|
|
whisper
|
|
common
|
|
)
|
|
|
|
target_include_directories(wchess-core
|
|
PUBLIC
|
|
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>"
|
|
)
|
|
|
|
# add_executable(test-chessboard test-chessboard.cpp Chessboard.cpp)
|