mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
37 lines
904 B
CMake
37 lines
904 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
qt_add_executable(plugandpaint
|
|
interfaces.h
|
|
main.cpp
|
|
mainwindow.cpp mainwindow.h
|
|
paintarea.cpp paintarea.h
|
|
plugindialog.cpp plugindialog.h
|
|
)
|
|
|
|
set_target_properties(plugandpaint PROPERTIES
|
|
WIN32_EXECUTABLE TRUE
|
|
MACOSX_BUNDLE TRUE
|
|
)
|
|
|
|
target_link_libraries(plugandpaint PRIVATE
|
|
Qt6::Widgets
|
|
pnp_basictools
|
|
)
|
|
|
|
if(QT6_IS_SHARED_LIBS_BUILD)
|
|
# Build the shared plugin too when building this example target.
|
|
add_dependencies(plugandpaint pnp_extrafilters)
|
|
else()
|
|
# Link the extrafilters plugin if Qt is built statically.
|
|
target_link_libraries(plugandpaint PRIVATE
|
|
pnp_extrafilters
|
|
)
|
|
endif()
|
|
|
|
install(TARGETS plugandpaint
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
)
|