mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-25 04:46:27 -05:00
12 lines
336 B
CMake
12 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)
|