diff options
| author | 2023-11-30 09:21:19 -0500 | |
|---|---|---|
| committer | 2023-11-30 09:21:19 -0500 | |
| 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.gz yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.tar.xz yuzu-3a12fe5d13e6d6d43239aa6ab416cd53749b5d87.zip | |
Merge pull request #12227 from jbeich/gamemode
cmake: unbreak build on FreeBSD by re-enabling gamemode
Diffstat (limited to 'externals/CMakeLists.txt')
| -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) | |||
| 193 | endif() | 193 | endif() |
| 194 | endif() | 194 | endif() |
| 195 | 195 | ||
| 196 | if (CMAKE_SYSTEM_NAME STREQUAL "Linux") | 196 | if (UNIX AND NOT APPLE) |
| 197 | add_subdirectory(gamemode) | 197 | add_subdirectory(gamemode) |
| 198 | endif() | 198 | endif() |
| 199 | 199 | ||