summaryrefslogtreecommitdiff
path: root/externals/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar liamwhite2023-01-22 18:22:47 -0500
committerGravatar GitHub2023-01-22 18:22:47 -0500
commitf99f618d45ad862c4bc23fc28c91d1c48218a3cb (patch)
treeec7b1205207b6c177af1bad768119e713b30138d /externals/CMakeLists.txt
parentMerge pull request #9660 from german77/koreaToTaiwan (diff)
parentcmake: support the standard cmake testing option (diff)
downloadyuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.gz
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.tar.xz
yuzu-f99f618d45ad862c4bc23fc28c91d1c48218a3cb.zip
Merge pull request #9555 from abouvier/catch2-update
tests: update catch2 to 3.0.1
Diffstat (limited to 'externals/CMakeLists.txt')
-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 @@
5# some of its variables, which is only possible in 3.13+ 5# some of its variables, which is only possible in 3.13+
6set(CMAKE_POLICY_DEFAULT_CMP0077 NEW) 6set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
7 7
8# Disable tests in all externals supporting the standard option name
9set(BUILD_TESTING OFF)
10
8# xbyak 11# xbyak
9if ((ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) AND NOT TARGET xbyak::xbyak) 12if ((ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) AND NOT TARGET xbyak::xbyak)
10 add_subdirectory(xbyak EXCLUDE_FROM_ALL) 13 add_subdirectory(xbyak EXCLUDE_FROM_ALL)