diff options
| -rw-r--r-- | externals/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/common/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 40ec20f3d..3213a16ef 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 (CMAKE_SYSTEM_NAME STREQUAL "Linux") | 192 | if (UNIX AND NOT APPLE) |
| 193 | add_subdirectory(gamemode) | 193 | add_subdirectory(gamemode) |
| 194 | endif() | 194 | endif() |
| 195 | 195 | ||
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 2651daadb..289760c40 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -174,7 +174,7 @@ if(ANDROID) | |||
| 174 | ) | 174 | ) |
| 175 | endif() | 175 | endif() |
| 176 | 176 | ||
| 177 | if (CMAKE_SYSTEM_NAME STREQUAL "Linux") | 177 | if (UNIX AND NOT APPLE) |
| 178 | target_sources(common PRIVATE | 178 | target_sources(common PRIVATE |
| 179 | linux/gamemode.cpp | 179 | linux/gamemode.cpp |
| 180 | linux/gamemode.h | 180 | linux/gamemode.h |