forked from db1994ify/citra-nightly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port yuzu-emu/yuzu#11946: "Enable (Feral Interactive) Gamemode on Lin…
…ux" (#7245)
- Loading branch information
1 parent
2e369c0
commit c7e9f84
Showing
14 changed files
with
540 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
project(gamemode LANGUAGES CXX C) | ||
|
||
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) |
Oops, something went wrong.