19 lines
470 B
TOML
19 lines
470 B
TOML
# Reference: https://build-cpp.github.io/cmkr/cmake-toml
|
|
[project]
|
|
name = "lmake"
|
|
version = "0.0.1"
|
|
"description" = "A cmake & cmkr wrapper for the lazy people."
|
|
languages = ["C", "CXX"]
|
|
|
|
[target.lmake]
|
|
type = "executable"
|
|
sources = ["src/main.cpp", "src/**.cpp"]
|
|
include-directories = ["src/"]
|
|
compile-features = ["cxx_std_20"]
|
|
link-libraries = ["fmt"]
|
|
|
|
[target.lmake.properties]
|
|
CXX_STANDARD = 20
|
|
CXX_STANDARD_REQUIRED = true
|
|
# RUNTIME_OUTPUT_DIRECTORY = "GAME_BUILD"
|