stellar

UCI Chess engine written in C++20
git clone git://git.dimitrijedobrota.com/stellar.git
Log | Files | Refs | README | LICENSE

CMakeLists.txt (189B)


0 add_library(moves OBJECT
1 move.cpp
2 movelist.cpp
3 )
5 target_link_libraries(moves
6 PRIVATE piece
7 PRIVATE board
8 PRIVATE utils
9 )
11 target_include_directories(moves INTERFACE .)