diff options
author | liamwhite <[email protected]> | 2023-11-30 09:21:19 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-30 09:21:19 -0500 |
commit | 3a12fe5d13e6d6d43239aa6ab416cd53749b5d87 (patch) | |
tree | 7ad8b5a0d09938ebf4244258ec7efaa13800e62a /externals | |
parent | 5345ab40eb7a71cd56de2113d8798e36fc121eb8 (diff) | |
parent | df96caec793fbf4262a2dee2a77cbd09725a078d (diff) | |
download | yuzu-android-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.tar.gz yuzu-android-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.zip |
Merge pull request #12227 from jbeich/gamemode
cmake: unbreak build on FreeBSD by re-enabling gamemode
Diffstat (limited to 'externals')
-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() |