mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-07-04 23:31:19 +01:00
general: conditionally compile gamemode on linux only
This commit is contained in:
parent
aded28f276
commit
5eec980a2d
3 changed files with 3 additions and 2 deletions
2
externals/CMakeLists.txt
vendored
2
externals/CMakeLists.txt
vendored
|
@ -189,7 +189,7 @@ if (ANDROID)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (UNIX)
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||||
add_subdirectory(gamemode)
|
add_subdirectory(gamemode)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -174,7 +174,7 @@ if(ANDROID)
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (UNIX)
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||||
target_sources(common PRIVATE
|
target_sources(common PRIVATE
|
||||||
linux/gamemode.cpp
|
linux/gamemode.cpp
|
||||||
linux/gamemode.h
|
linux/gamemode.h
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
#include <gamemode_client.h>
|
#include <gamemode_client.h>
|
||||||
|
|
||||||
#include "common/linux/gamemode.h"
|
#include "common/linux/gamemode.h"
|
||||||
|
#include "common/logging/log.h"
|
||||||
#include "common/settings.h"
|
#include "common/settings.h"
|
||||||
|
|
||||||
namespace Common::Linux {
|
namespace Common::Linux {
|
||||||
|
|
Loading…
Reference in a new issue