18 lines
492 B
TOML
18 lines
492 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
|