mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-02-14 11:18:21 -06:00
![flodavid](/assets/img/avatar_default.png)
- Create files dedicated to starting and stopping gamemode functions - Use them in yuzu and yuzu_cmd modules
12 lines
337 B
CMake
12 lines
337 B
CMake
# SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
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)
|