mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-06 09:15:23 +08:00
qt 6.5.1 original
This commit is contained in:
35
examples/widgets/tools/echoplugin/echowindow/CMakeLists.txt
Normal file
35
examples/widgets/tools/echoplugin/echowindow/CMakeLists.txt
Normal file
@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
qt_add_executable(echopluginwindow
|
||||
echointerface.h
|
||||
echowindow.cpp echowindow.h
|
||||
main.cpp
|
||||
)
|
||||
|
||||
set_target_properties(echopluginwindow PROPERTIES
|
||||
WIN32_EXECUTABLE TRUE
|
||||
MACOSX_BUNDLE TRUE
|
||||
)
|
||||
|
||||
target_link_libraries(echopluginwindow PRIVATE
|
||||
Qt6::Core
|
||||
Qt6::Gui
|
||||
Qt6::Widgets
|
||||
)
|
||||
|
||||
if(QT6_IS_SHARED_LIBS_BUILD)
|
||||
# Build the shared plugin too when building this example target.
|
||||
add_dependencies(echopluginwindow echoplugin)
|
||||
else()
|
||||
# Link the echoplugin if Qt is built statically.
|
||||
target_link_libraries(echopluginwindow PRIVATE
|
||||
echoplugin
|
||||
)
|
||||
endif()
|
||||
|
||||
install(TARGETS echopluginwindow
|
||||
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||||
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||||
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||||
)
|
Reference in New Issue
Block a user