Files
DREAM2026/cmake.toml
2026-02-15 21:45:33 +01:00

19 lines
532 B
TOML

# Reference: https://build-cpp.github.io/cmkr/cmake-toml
[project]
name = "DREAM2026"
version = "0.0.1"
"description" = "A 2D game engine based on Raylib."
languages = ["C", "CXX"]
[target.DREAM2026]
type = "executable"
sources = ["src/main.cpp", "src/Engine/**.cpp", "src/Game/src/**.cpp"]
include-directories = ["src/Game/src", "src/Engine"]
compile-features = ["cxx_std_20"]
link-libraries = ["raylib", "fmt"]
[target.DREAM2026.properties]
CXX_STANDARD = 20
CXX_STANDARD_REQUIRED = true
RUNTIME_OUTPUT_DIRECTORY = "GAME_BUILD"