Add fmt submodule.

This commit is contained in:
gibbed
2020-02-21 09:44:45 -06:00
committed by Rick Gibbed
parent 727b3dc2b6
commit 114cea6fb7
3 changed files with 21 additions and 0 deletions
+3
View File
@@ -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
Vendored Submodule
+1
Submodule third_party/fmt added at 27e3c0fe9b
+17
View File
@@ -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"
})