12 lines
249 B
CMake
12 lines
249 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
|
|
# set the project name
|
|
project(AdventofCode2021)
|
|
|
|
# specify the C++ standard
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
|
|
|
add_subdirectory(day1)
|
|
add_subdirectory(day2)
|
|
add_subdirectory(day3) |