Added day 1 & day 2

This commit is contained in:
Hugo Mårdbrink 2021-12-02 13:39:35 +01:00
commit f9c3c61ef7
8 changed files with 3137 additions and 0 deletions

14
CMakeLists.txt Normal file
View file

@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.10)
# set the project name
project(AoC-2021)
# specify the C++ standard
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True)
# add the executable
add_executable(01A "solutions/01A.cpp")
add_executable(01B "solutions/01B.cpp")
add_executable(02A "solutions/02A.cpp")
add_executable(02B "solutions/02B.cpp")