stellar

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

CMakeLists.txt (189B)


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