2023-07-16 22:45:33 +00:00
|
|
|
# SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
project(gamemode)
|
|
|
|
|
|
|
|
add_library(gamemode include/gamemode_client.h)
|
2023-11-03 14:41:16 +00:00
|
|
|
|
|
|
|
target_link_libraries(gamemode PRIVATE common)
|
|
|
|
|
|
|
|
target_include_directories(gamemode PUBLIC include)
|
2023-07-16 22:45:33 +00:00
|
|
|
set_target_properties(gamemode PROPERTIES LINKER_LANGUAGE C)
|