stellarUCI Chess engine written in C++20 |
git clone git://git.dimitrijedobrota.com/stellar.git |
Log | Files | Refs | README | LICENSE |
CMakeLists.txt (194B)
0 add_library(board OBJECT 1 board.cpp 2 ) 3 4 target_link_libraries(board 5 PRIVATE bitboard 6 PRIVATE utils 7 PRIVATE piece 8 PUBLIC random 9 ) 10 11 target_include_directories(board INTERFACE .)