blob: 1af7be2aef9a2d9cb77977cb6d699a4e580dfe20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
serenity_component(
ChessEngine
TARGETS ChessEngine
)
set(SOURCES
ChessEngine.cpp
main.cpp
MCTSTree.cpp
)
serenity_bin(ChessEngine)
target_link_libraries(ChessEngine LibChess LibCore LibMain)
|