Adding snappy dependency (to replace zlib) for #505.
This commit is contained in:
parent
457c1fc30f
commit
28f43e445d
|
@ -69,7 +69,7 @@ build:
|
||||||
|
|
||||||
# MSBuild verbosity level
|
# MSBuild verbosity level
|
||||||
#verbosity: quiet|minimal|normal|detailed
|
#verbosity: quiet|minimal|normal|detailed
|
||||||
verbosity: detailed
|
verbosity: minimal
|
||||||
|
|
||||||
# scripts to run before build
|
# scripts to run before build
|
||||||
before_build:
|
before_build:
|
||||||
|
|
|
@ -28,3 +28,6 @@
|
||||||
[submodule "third_party/premake-core"]
|
[submodule "third_party/premake-core"]
|
||||||
path = third_party/premake-core
|
path = third_party/premake-core
|
||||||
url = https://github.com/premake/premake-core.git
|
url = https://github.com/premake/premake-core.git
|
||||||
|
[submodule "third_party/snappy"]
|
||||||
|
path = third_party/snappy
|
||||||
|
url = https://github.com/xenia-project/snappy.git
|
||||||
|
|
|
@ -163,6 +163,7 @@ solution("xenia")
|
||||||
include("third_party/glew.lua")
|
include("third_party/glew.lua")
|
||||||
include("third_party/imgui.lua")
|
include("third_party/imgui.lua")
|
||||||
include("third_party/libav.lua")
|
include("third_party/libav.lua")
|
||||||
|
include("third_party/snappy.lua")
|
||||||
include("third_party/spirv-tools.lua")
|
include("third_party/spirv-tools.lua")
|
||||||
include("third_party/xxhash.lua")
|
include("third_party/xxhash.lua")
|
||||||
include("third_party/zlib.lua")
|
include("third_party/zlib.lua")
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 303cd2c64c62c579a8592236f723b611afd3bc15
|
|
@ -0,0 +1,22 @@
|
||||||
|
group("third_party")
|
||||||
|
project("snappy")
|
||||||
|
uuid("bb143d61-3fd4-44c2-8b7e-04cc538ba2c7")
|
||||||
|
kind("StaticLib")
|
||||||
|
language("C++")
|
||||||
|
|
||||||
|
defines({
|
||||||
|
"_LIB",
|
||||||
|
})
|
||||||
|
files({
|
||||||
|
"snappy/snappy-internal.h",
|
||||||
|
"snappy/snappy-sinksource.cc",
|
||||||
|
"snappy/snappy-sinksource.h",
|
||||||
|
"snappy/snappy-stubs-internal.cc",
|
||||||
|
"snappy/snappy-stubs-internal.h",
|
||||||
|
"snappy/snappy-stubs-public.h",
|
||||||
|
"snappy/snappy.cc",
|
||||||
|
"snappy/snappy.h",
|
||||||
|
})
|
||||||
|
|
||||||
|
filter("platforms:Windows")
|
||||||
|
warnings("Off") -- Too many warnings.
|
Loading…
Reference in New Issue