Initial commit

This commit is contained in:
Hugo Mårdbrink 2022-11-29 14:18:08 +01:00
commit ffcff856aa
3 changed files with 19 additions and 0 deletions

11
CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.10)
project(aoc22)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True)
if( NOT CMAKE_BUILD_TYPE )
SET( CMAKE_BUILD_TYPE Release )
endif()