24 lines
521 B
Text
24 lines
521 B
Text
|
# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
add_library(qt_common STATIC
|
||
|
qt_common.h
|
||
|
qt_common.cpp
|
||
|
|
||
|
uisettings.cpp
|
||
|
uisettings.h
|
||
|
|
||
|
qt_config.cpp
|
||
|
qt_config.h
|
||
|
|
||
|
shared_translation.cpp
|
||
|
shared_translation.h
|
||
|
)
|
||
|
|
||
|
create_target_directory_groups(qt_common)
|
||
|
target_link_libraries(qt_common PUBLIC core Qt6::Core Qt6::Gui SimpleIni::SimpleIni)
|
||
|
|
||
|
if (NOT WIN32)
|
||
|
target_include_directories(qt_common PRIVATE ${Qt6Gui_PRIVATE_INCLUDE_DIRS})
|
||
|
endif()
|