diff options
| author | 2023-11-29 14:28:37 -0600 | |
|---|---|---|
| committer | 2023-11-29 14:28:37 -0600 | |
| commit | 9dc9aaf4af1c3c846c9cd46a9433dcf0684da19b (patch) | |
| tree | 039dc2b3dc42aa51df063a873bbd0b78cfbe227f /externals | |
| parent | Merge pull request #12204 from t895/config-migration (diff) | |
| parent | general: conditionally compile gamemode on linux only (diff) | |
| download | yuzu-9dc9aaf4af1c3c846c9cd46a9433dcf0684da19b.tar.gz yuzu-9dc9aaf4af1c3c846c9cd46a9433dcf0684da19b.tar.xz yuzu-9dc9aaf4af1c3c846c9cd46a9433dcf0684da19b.zip | |
Merge pull request #12223 from liamwhite/fruit-company
general: conditionally compile gamemode on linux only
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 070151bec..40ec20f3d 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -189,7 +189,7 @@ if (ANDROID) | |||
| 189 | endif() | 189 | endif() |
| 190 | endif() | 190 | endif() |
| 191 | 191 | ||
| 192 | if (UNIX) | 192 | if (CMAKE_SYSTEM_NAME STREQUAL "Linux") |
| 193 | add_subdirectory(gamemode) | 193 | add_subdirectory(gamemode) |
| 194 | endif() | 194 | endif() |
| 195 | 195 | ||