From 08bdf5abe6c473b6573708f3c11d08dbd8553948 Mon Sep 17 00:00:00 2001 From: Jonathan Goyvaerts Date: Sun, 25 Nov 2018 16:39:14 +0100 Subject: [PATCH] Add cpptoml third_party dependency --- .gitmodules | 3 +++ premake5.lua | 1 + third_party/cpptoml | 1 + third_party/cpptoml.lua | 8 ++++++++ 4 files changed, 13 insertions(+) create mode 160000 third_party/cpptoml create mode 100644 third_party/cpptoml.lua diff --git a/.gitmodules b/.gitmodules index 868632298..3163a1ba2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -49,3 +49,6 @@ [submodule "third_party/capstone"] path = third_party/capstone url = https://github.com/xenia-project/capstone.git +[submodule "third_party/cpptoml"] + path = third_party/cpptoml + url = https://github.com/skystrife/cpptoml diff --git a/premake5.lua b/premake5.lua index 2e1d73e2e..f5dbcd74a 100644 --- a/premake5.lua +++ b/premake5.lua @@ -234,6 +234,7 @@ solution("xenia") include("third_party/capstone.lua") include("third_party/discord-rpc.lua") include("third_party/gflags.lua") + include("third_party/cpptoml.lua") include("third_party/glew.lua") include("third_party/glslang-spirv.lua") include("third_party/imgui.lua") diff --git a/third_party/cpptoml b/third_party/cpptoml new file mode 160000 index 000000000..fededad71 --- /dev/null +++ b/third_party/cpptoml @@ -0,0 +1 @@ +Subproject commit fededad7169e538ca47e11a9ee9251bc361a9a65 diff --git a/third_party/cpptoml.lua b/third_party/cpptoml.lua new file mode 100644 index 000000000..fa6c59059 --- /dev/null +++ b/third_party/cpptoml.lua @@ -0,0 +1,8 @@ +group("third_party") +project("cpptoml") + uuid("1e86cc51-3f8b-476d-9249-3b200424846b") + kind("Utility") + language("C++") + files({ + "cpptoml/include/cpptoml.h", + })