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