stellar

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

CMakeLists.txt (210B)


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