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