stellar

Stellar - Chess engine written in C
Log | Files | Refs

CMakeLists.txt (160B)


      1 add_library(moves OBJECT
      2     moves.c
      3     moves_make.c
      4     moves_generate.c
      5 )
      6 
      7 target_include_directories(moves
      8     PUBLIC "${PROJECT_SOURCE_DIR}/src/include"
      9 )