Refactored code

This commit is contained in:
a2x
2023-09-16 13:32:01 +10:00
parent a3a3427561
commit a8d3318d94
58 changed files with 787 additions and 635 deletions

13
cmake.toml Normal file
View File

@@ -0,0 +1,13 @@
[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"]