mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
dccb8f6b17
The Linux build fails to compile because gamemode will try to link against `common` when it's not needed.
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)
|