cmake_minimum_required(VERSION 3.13)
project(randomTree)

set(CMAKE_CXX_STANDARD 17)

# Option du compilateur.
SET( CMAKE_CXX_FLAGS "-Wall -Wextra -W -pedantic -Ofast")

add_executable(randomTree src/main.cpp src/randomPlanForest.cpp src/randomPlanForest.h src/node.cpp src/node.h src/generatorParameters.cpp src/generatorParameters.h)