Add fmt submodule.
This commit is contained in:
parent
727b3dc2b6
commit
114cea6fb7
|
@ -55,3 +55,6 @@
|
||||||
[submodule "third_party/utfcpp"]
|
[submodule "third_party/utfcpp"]
|
||||||
path = third_party/utfcpp
|
path = third_party/utfcpp
|
||||||
url = https://github.com/xenia-project/utfcpp.git
|
url = https://github.com/xenia-project/utfcpp.git
|
||||||
|
[submodule "third_party/fmt"]
|
||||||
|
path = third_party/fmt
|
||||||
|
url = https://github.com/fmtlib/fmt.git
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 27e3c0fe9b5dc99f339637ec2ea7efae5b945ab8
|
|
@ -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"
|
||||||
|
})
|
Loading…
Reference in New Issue