diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-30 15:21:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 15:21:19 +0100 |
commit | 3a12fe5d13e6d6d43239aa6ab416cd53749b5d87 (patch) | |
tree | 7ad8b5a0d09938ebf4244258ec7efaa13800e62a /externals/CMakeLists.txt | |
parent | Merge pull request #12225 from liamwhite/mac-ci (diff) | |
parent | cmake: sync gamemode conditionals with code after 5eec980a2d71 (diff) | |
download | yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.tar yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.tar.gz yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.tar.bz2 yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.tar.lz yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.tar.xz yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.tar.zst yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.zip |
Diffstat (limited to '')
-rw-r--r-- | externals/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 8e1fc696a..04007a538 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -193,7 +193,7 @@ if (ANDROID) endif() endif() -if (CMAKE_SYSTEM_NAME STREQUAL "Linux") +if (UNIX AND NOT APPLE) add_subdirectory(gamemode) endif() |