summaryrefslogtreecommitdiffstats
path: root/externals
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-01-23 00:22:47 +0100
committerGitHub <noreply@github.com>2023-01-23 00:22:47 +0100
commitf99f618d45ad862c4bc23fc28c91d1c48218a3cb (patch)
treeec7b1205207b6c177af1bad768119e713b30138d /externals
parentMerge pull request #9660 from german77/koreaToTaiwan (diff)
parentcmake: support the standard cmake testing option (diff)
downloadyuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.gz
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.bz2
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.lz
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.xz
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.zst
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.zip
Diffstat (limited to 'externals')
-rw-r--r--externals/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index 89a381587..94dd8bb62 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -5,6 +5,9 @@
# some of its variables, which is only possible in 3.13+
set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
+# Disable tests in all externals supporting the standard option name
+set(BUILD_TESTING OFF)
+
# xbyak
if ((ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) AND NOT TARGET xbyak::xbyak)
add_subdirectory(xbyak EXCLUDE_FROM_ALL)