Day 1
This commit is contained in:
17
cmake.toml
Normal file
17
cmake.toml
Normal 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
|
||||
Reference in New Issue
Block a user