blob: a74779b7a95eeaa0c1050b6b1283408771e35bb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
cmake_minimum_required(VERSION 3.10)
project(Gacrux LANGUAGES C)
set(SOURCES
src/main.c
src/bitboard.c
src/search/moves.c
src/search/pawn_moves.c
src/search/knight_moves.c
src/search/king_moves.c
)
add_executable(gacrux ${SOURCES})
|