stellar

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

CMakeLists.txt (148B)


      1 add_library(piece INTERFACE)
      2 
      3 target_link_libraries(piece
      4     INTERFACE attack
      5     INTERFACE utils
      6 )
      7 
      8 target_include_directories(piece INTERFACE .)