blob: 33ad32f7356b52cda0f344e5d46b80d4ad2c2105 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
)
add_executable(gacrux ${SOURCES})
|