Files
AoC-2025/cmake.toml
2025-12-02 16:15:18 +01:00

18 lines
393 B
TOML

# 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