mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-07-04 23:31:19 +01:00
ccd3dd842f
Creates utility functions to remove/install DLC, updates, and base game content
11 lines
336 B
CMake
11 lines
336 B
CMake
# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
add_library(frontend_common STATIC
|
|
config.cpp
|
|
config.h
|
|
content_manager.h
|
|
)
|
|
|
|
create_target_directory_groups(frontend_common)
|
|
target_link_libraries(frontend_common PUBLIC core SimpleIni::SimpleIni PRIVATE common Boost::headers)
|