mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
31 lines
641 B
CMake
31 lines
641 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
qt_add_executable(styleplugin
|
|
main.cpp
|
|
stylewindow.cpp stylewindow.h
|
|
)
|
|
|
|
set_target_properties(styleplugin PROPERTIES
|
|
WIN32_EXECUTABLE TRUE
|
|
MACOSX_BUNDLE TRUE
|
|
)
|
|
|
|
target_link_libraries(styleplugin PRIVATE
|
|
Qt6::Core
|
|
Qt6::Gui
|
|
Qt6::Widgets
|
|
)
|
|
|
|
if(NOT QT6_IS_SHARED_LIBS_BUILD)
|
|
target_link_libraries(styleplugin PRIVATE
|
|
simplestyleplugin
|
|
)
|
|
endif()
|
|
|
|
install(TARGETS styleplugin
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
)
|