xenia/third_party/tomlplusplus.lua
Gliniak 60b31af811 [3PP] Replaced cpptoml with tomlplusplus
Also adjusted code that used cpptoml to be used with toml++ and some more changes
2024-09-22 20:41:52 +02:00

14 lines
312 B
Lua

group("third_party")
project("tomlplusplus")
uuid("1e86cc51-3f8b-476d-9249-3b200424846b")
if os.istarget("android") then
-- ndk-build only supports StaticLib and SharedLib.
kind("StaticLib")
else
kind("Utility")
end
language("C++")
files({
"tomlplusplus/include/toml++/toml.hpp"
})