Files
cs2-dumper/cmake.toml
2023-09-16 13:53:08 +10:00

14 lines
398 B
TOML

[project]
name = "cs2-dumper"
[fetch-content]
nlohmann-json = { git = "https://github.com/nlohmann/json", tag = "v3.11.2" }
spdlog = { git = "https://github.com/gabime/spdlog", tag = "v1.12.0" }
[target.cs2-dumper]
type = "executable"
sources = ["src/**.cpp"]
include-directories = ["include"]
compile-features = ["cxx_std_20"]
link-libraries = ["nlohmann_json::nlohmann_json", "spdlog::spdlog"]