[3PP] Added Zlib library
This commit is contained in:
parent
a966143823
commit
42e7f99021
|
@ -97,3 +97,6 @@
|
|||
[submodule "third_party/rapidcsv"]
|
||||
path = third_party/rapidcsv
|
||||
url = https://github.com/d99kris/rapidcsv
|
||||
[submodule "third_party/zlib"]
|
||||
path = third_party/zlib
|
||||
url = https://github.com/madler/zlib.git
|
||||
|
|
|
@ -262,6 +262,7 @@ workspace("xenia")
|
|||
include("third_party/xxhash.lua")
|
||||
include("third_party/zarchive.lua")
|
||||
include("third_party/zstd.lua")
|
||||
include("third_party/zlib.lua")
|
||||
|
||||
if not os.istarget("android") then
|
||||
-- SDL2 requires sdl2-config, and as of November 2020 isn't high-quality on
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 51b7f2abdade71cd9bb0e7a373ef2610ec6f9daf
|
|
@ -0,0 +1,9 @@
|
|||
group("third_party")
|
||||
project("zlib")
|
||||
uuid("13d4073d-f1c9-47e3-a057-79b133596fc2")
|
||||
kind("StaticLib")
|
||||
language("C")
|
||||
files({
|
||||
"zlib/*.c",
|
||||
"zlib/*.h",
|
||||
})
|
Loading…
Reference in New Issue