1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:27:35 +00:00

ChessEngine: Move from Applications to Services

This is not a stand-alone application. :^)
This commit is contained in:
Andreas Kling 2020-08-28 12:53:02 +02:00
parent 1d638c6a78
commit 0a7d9319af
8 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,8 @@
set(SOURCES
ChessEngine.cpp
main.cpp
MCTSTree.cpp
)
serenity_bin(ChessEngine)
target_link_libraries(ChessEngine LibChess LibCore)