9 lines
184 B
CMake
9 lines
184 B
CMake
cmake_minimum_required(VERSION 3.10.0)
|
|
project(SimulateurFranceVote VERSION 0.1.0 LANGUAGES C CXX)
|
|
|
|
file(GLOB_RECURSE
|
|
SRCS
|
|
src/*
|
|
)
|
|
|
|
add_executable(SimulateurFranceVote ${SRCS}) |