Initial commit
This commit is contained in:
18
cmake.toml
Normal file
18
cmake.toml
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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"
|
||||
Reference in New Issue
Block a user