18 lines
393 B
TOML
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
|