summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-10-04 21:44:13 +0200
committerGitHub <noreply@github.com>2019-10-04 21:44:13 +0200
commitaccdb84993ca8fbb8f69c505dd9a3c5a7064bebf (patch)
tree70d77e931f85d83cbc0e9b5fc0a310299d0ab95d
parentMerge pull request #2898 from FearlessTobi/port-4004 (diff)
parentCMakeLists: Make libzip excluded from the ALL target (diff)
downloadyuzu-accdb84993ca8fbb8f69c505dd9a3c5a7064bebf.tar
yuzu-accdb84993ca8fbb8f69c505dd9a3c5a7064bebf.tar.gz
yuzu-accdb84993ca8fbb8f69c505dd9a3c5a7064bebf.tar.bz2
yuzu-accdb84993ca8fbb8f69c505dd9a3c5a7064bebf.tar.lz
yuzu-accdb84993ca8fbb8f69c505dd9a3c5a7064bebf.tar.xz
yuzu-accdb84993ca8fbb8f69c505dd9a3c5a7064bebf.tar.zst
yuzu-accdb84993ca8fbb8f69c505dd9a3c5a7064bebf.zip
-rw-r--r--.ci/scripts/linux/docker.sh3
-rw-r--r--.gitmodules8
-rw-r--r--externals/CMakeLists.txt8
m---------externals/zlib0
4 files changed, 10 insertions, 9 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh
index f538a4081..296b14e56 100644
--- a/.ci/scripts/linux/docker.sh
+++ b/.ci/scripts/linux/docker.sh
@@ -11,4 +11,5 @@ ninja
ccache -s
-ctest -VV -C Release
+# Ignore zlib's tests, since they aren't gated behind a CMake option.
+ctest -VV -E "(example|example64)" -C Release
diff --git a/.gitmodules b/.gitmodules
index f3051cca0..35e0d1240 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -47,8 +47,8 @@
path = externals/sirit
url = https://github.com/ReinUsesLisp/sirit
[submodule "libzip"]
- path = externals/libzip
- url = https://github.com/DarkLordZach/libzip
+ path = externals/libzip
+ url = https://github.com/DarkLordZach/libzip
[submodule "zlib"]
- path = externals/zlib
- url = https://github.com/DarkLordZach/zlib
+ path = externals/zlib
+ url = https://github.com/madler/zlib
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index d797d9fc9..3539828b8 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -77,11 +77,11 @@ if (ENABLE_VULKAN)
add_subdirectory(sirit)
endif()
-# libzip
-add_subdirectory(libzip)
-
# zlib
-add_subdirectory(zlib)
+add_subdirectory(zlib EXCLUDE_FROM_ALL)
+
+# libzip
+add_subdirectory(libzip EXCLUDE_FROM_ALL)
if (ENABLE_WEB_SERVICE)
# LibreSSL
diff --git a/externals/zlib b/externals/zlib
-Subproject 094ed57db392170130bc710293568de7b576306
+Subproject cacf7f1d4e3d44d871b605da3b647f07d718623