-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
21 lines (19 loc) · 1.43 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cmake_minimum_required(VERSION 3.10.2)
project(advent2021 CXX)
add_executable(advent2021-day01 cpp/day01.cpp cpp/advent.h inputs/day1_input.txt)
add_executable(advent2021-day02 cpp/day02.cpp cpp/advent.h inputs/day2_input.txt)
add_executable(advent2021-day03 cpp/day03.cpp cpp/advent.h inputs/day3_input.txt)
add_executable(advent2021-day04 cpp/day04.cpp cpp/advent.h inputs/day4_input.txt)
add_executable(advent2021-day05 cpp/day05.cpp cpp/advent.h inputs/day5_input.txt)
add_executable(advent2021-day06 cpp/day06.cpp cpp/advent.h inputs/day6_input.txt)
add_executable(advent2021-day07 cpp/day07.cpp cpp/advent.h inputs/day7_input.txt)
add_executable(advent2021-day08 cpp/day08.cpp cpp/advent.h inputs/day8_input.txt)
add_executable(advent2021-day09 cpp/day09.cpp cpp/advent.h inputs/day9_input.txt)
add_executable(advent2021-day10 cpp/day10.cpp cpp/advent.h inputs/day10_input.txt)
add_executable(advent2021-day11 cpp/day11.cpp cpp/advent.h inputs/day11_input.txt)
add_executable(advent2021-day12 cpp/day12.cpp cpp/advent.h inputs/day12_input.txt)
add_executable(advent2021-day13 cpp/day13.cpp cpp/advent.h inputs/day13_input.txt)
add_executable(advent2021-day14 cpp/day14.cpp cpp/advent.h inputs/day14_input.txt)
add_executable(advent2021-day15 cpp/day15.cpp cpp/advent.h inputs/day15_input.txt)
add_executable(advent2021-day16 cpp/day16.cpp cpp/advent.h inputs/day16_input.txt)
add_executable(advent2021-day17 cpp/day17.cpp cpp/advent.h inputs/day17_input.txt)