diff options
| author | Liam <byteslice@airmail.cc> | 2023-11-29 14:17:12 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2023-11-29 14:26:11 -0500 |
| commit | 5eec980a2d710a1fa1bfb0f8ba58ecdae3aab04d (patch) | |
| tree | 039dc2b3dc42aa51df063a873bbd0b78cfbe227f /src/common/CMakeLists.txt | |
| parent | aded28f276554f7f654ca3f6391c991b872862ac (diff) | |
general: conditionally compile gamemode on linux only
Diffstat (limited to 'src/common/CMakeLists.txt')
| -rw-r--r-- | src/common/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 57cbb9d07..2651daadb 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -174,7 +174,7 @@ if(ANDROID) ) endif() -if (UNIX) +if (CMAKE_SYSTEM_NAME STREQUAL "Linux") target_sources(common PRIVATE linux/gamemode.cpp linux/gamemode.h |
