diff options
author | flodavid <fl.david.53@gmail.com> | 2023-11-03 15:41:16 +0100 |
---|---|---|
committer | flodavid <fl.david.53@gmail.com> | 2023-11-25 19:30:37 +0100 |
commit | 40644d43f700cb0075db0eea288078bda7cf4527 (patch) | |
tree | 876d26a64a803d2b1509e71a13fe822f1e851c00 /externals | |
parent | yuzu: integrate gamemode support on linux (diff) | |
download | yuzu-40644d43f700cb0075db0eea288078bda7cf4527.tar yuzu-40644d43f700cb0075db0eea288078bda7cf4527.tar.gz yuzu-40644d43f700cb0075db0eea288078bda7cf4527.tar.bz2 yuzu-40644d43f700cb0075db0eea288078bda7cf4527.tar.lz yuzu-40644d43f700cb0075db0eea288078bda7cf4527.tar.xz yuzu-40644d43f700cb0075db0eea288078bda7cf4527.tar.zst yuzu-40644d43f700cb0075db0eea288078bda7cf4527.zip |
Diffstat (limited to 'externals')
-rw-r--r-- | externals/CMakeLists.txt | 3 | ||||
-rw-r--r-- | externals/gamemode/CMakeLists.txt | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 36fc60e0e..4ce9f201e 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -189,8 +189,7 @@ if (ANDROID) endif() endif() -# Gamemode -if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux") +if (UNIX) add_subdirectory(gamemode) target_include_directories(gamemode PUBLIC gamemode/include) endif() diff --git a/externals/gamemode/CMakeLists.txt b/externals/gamemode/CMakeLists.txt index 3dddc6dbd..eb970023d 100644 --- a/externals/gamemode/CMakeLists.txt +++ b/externals/gamemode/CMakeLists.txt @@ -4,4 +4,8 @@ project(gamemode) add_library(gamemode include/gamemode_client.h) + +target_link_libraries(gamemode PRIVATE common) + +target_include_directories(gamemode PUBLIC include) set_target_properties(gamemode PROPERTIES LINKER_LANGUAGE C) |