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 ) add_executable(gacrux ${SOURCES})