[3PP] Added Zlib library

This commit is contained in:
Gliniak 2024-03-22 11:14:31 +01:00
parent a966143823
commit 42e7f99021
4 changed files with 14 additions and 0 deletions

3
.gitmodules vendored
View File

@ -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

View File

@ -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

1
third_party/zlib vendored Submodule

@ -0,0 +1 @@
Subproject commit 51b7f2abdade71cd9bb0e7a373ef2610ec6f9daf

9
third_party/zlib.lua vendored Normal file
View File

@ -0,0 +1,9 @@
group("third_party")
project("zlib")
uuid("13d4073d-f1c9-47e3-a057-79b133596fc2")
kind("StaticLib")
language("C")
files({
"zlib/*.c",
"zlib/*.h",
})