mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
10 lines
305 B
CMake
10 lines
305 B
CMake
|
# 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_include_directories(gamemode PUBLIC include)
|
||
|
set_target_properties(gamemode PROPERTIES LINKER_LANGUAGE C)
|