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
.gitmodules vendored
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

1
third_party/fmt vendored Submodule

@ -0,0 +1 @@
Subproject commit 27e3c0fe9b5dc99f339637ec2ea7efae5b945ab8

17
third_party/fmt.lua vendored Normal file
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"
})