early-access version 3999

main
pineappleEA 2023-11-29 23:25:15 +01:00
parent 1382f73d4e
commit 1996a32f94
4 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3998. This is the source code for early-access 3999.
## Legal Notice ## Legal Notice

View File

@ -193,7 +193,7 @@ if (ANDROID)
endif() endif()
endif() endif()
if (UNIX) if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
add_subdirectory(gamemode) add_subdirectory(gamemode)
endif() endif()

View File

@ -182,7 +182,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

View File

@ -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 {