Build your AI
How to build you AI ?
Linux
Makefile
# if you have ne build your project
$> make
# if you have build once
$> make reCMake
#if it your first build
# if you want to build with Ninja
$> cmake -B build -G Ninja
# if you want to build without Ninja
$> cmake -B build
# for all builds
$> cmake --build buildWindows
Last updated