diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-01-23 00:22:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 00:22:47 +0100 |
commit | f99f618d45ad862c4bc23fc28c91d1c48218a3cb (patch) | |
tree | ec7b1205207b6c177af1bad768119e713b30138d /externals | |
parent | Merge pull request #9660 from german77/koreaToTaiwan (diff) | |
parent | cmake: support the standard cmake testing option (diff) | |
download | yuzu-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.txt | 3 |
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) |