From 114cea6fb7f8dd14156271e49f7c28b150d9786b Mon Sep 17 00:00:00 2001 From: gibbed Date: Fri, 21 Feb 2020 09:44:45 -0600 Subject: [PATCH] Add fmt submodule. --- .gitmodules | 3 +++ third_party/fmt | 1 + third_party/fmt.lua | 17 +++++++++++++++++ 3 files changed, 21 insertions(+) create mode 160000 third_party/fmt create mode 100644 third_party/fmt.lua diff --git a/.gitmodules b/.gitmodules index 90a87d6b5..e7a8eaee3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -55,3 +55,6 @@ [submodule "third_party/utfcpp"] path = third_party/utfcpp url = https://github.com/xenia-project/utfcpp.git +[submodule "third_party/fmt"] + path = third_party/fmt + url = https://github.com/fmtlib/fmt.git diff --git a/third_party/fmt b/third_party/fmt new file mode 160000 index 000000000..27e3c0fe9 --- /dev/null +++ b/third_party/fmt @@ -0,0 +1 @@ +Subproject commit 27e3c0fe9b5dc99f339637ec2ea7efae5b945ab8 diff --git a/third_party/fmt.lua b/third_party/fmt.lua new file mode 100644 index 000000000..ae72071b9 --- /dev/null +++ b/third_party/fmt.lua @@ -0,0 +1,17 @@ +group("third_party") +project("fmt") + uuid("b9ff4b2c-b438-42a9-971e-e0c19a711a13") + kind("StaticLib") + language("C++") + links({ + }) + defines({ + "_LIB", + }) + includedirs({ + "fmt/include", + }) + files({ + "fmt/src/format.cc", + "fmt/src/os.cc" + })