This commit is contained in:
2025-12-02 16:15:18 +01:00
parent cb3b5e2569
commit 5cbcebf443
8 changed files with 4903 additions and 0 deletions

17
cmake.toml Normal file
View File

@@ -0,0 +1,17 @@
# Reference: https://build-cpp.github.io/cmkr/cmake-toml
[project]
name = "01"
version = "0.0.1"
"description" = "Advent of Code Puzzle 1."
languages = ["C", "CXX"]
[target.01]
type = "executable"
sources = ["src/main.cpp"]
include-directories = ["src/include"]
compile-features = ["cxx_std_20"]
link-libraries = ["fmt"]
[target.01.properties]
CXX_STANDARD = 20
CXX_STANDARD_REQUIRED = true