Initial commit
This commit is contained in:
commit
ffcff856aa
3 changed files with 19 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
/build
|
||||
/.vscode
|
||||
.DS_STORE
|
||||
11
CMakeLists.txt
Normal file
11
CMakeLists.txt
Normal 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()
|
||||
|
||||
5
README.md
Normal file
5
README.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Advent of code 2022 - Hugo Mårdbrink
|
||||
|
||||
**Done in C++ 20.**
|
||||
|
||||
**Compile via CMake.**
|
||||
Loading…
Add table
Add a link
Reference in a new issue