Build your AI

How to build you AI ?

Linux

To build on linux there is 2 ways :

Makefile

# if you have ne build your project
$> make
# if you have build once
$> make re

CMake

#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 build

Windows

For Windows you juste have to open the project directory with Visual Studio. The buold gonna start automaticly.

Last updated