Initial commit

This commit is contained in:
2026-05-07 15:01:36 +02:00
parent 4cbf2fdfaa
commit af1519b736
8 changed files with 410 additions and 0 deletions

18
cmake.toml Normal file
View 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"