1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
qt6_add_qml_module(chartsplugin
VERSION 1.0
URI "Charts"
PLUGIN_TARGET chartsplugin
DEPENDENCIES QtQuick
)
target_sources(chartsplugin PRIVATE
piechart.cpp piechart.h
pieslice.cpp pieslice.h
)
target_link_libraries(chartsplugin PRIVATE
Qt::Core
Qt::Gui
Qt::Qml
Qt::Quick
)
if(QT6_IS_SHARED_LIBS_BUILD AND APPLE)
get_target_property(is_bundle chapter6-plugins MACOSX_BUNDLE)
if(is_bundle)
# The application's main.cpp adds an explicit QML import path to look for qml modules under
# a PlugIns subdirectory in a macOS bundle.
# Copy the qmldir and shared library qml plugin.
set(charts_dir "$<TARGET_FILE_DIR:chartsplugin>")
set(chars_qmldir_file "${charts_dir}/qmldir")
set(app_dir "$<TARGET_FILE_DIR:chapter6-plugins>")
set(bundle_charts_dir "${app_dir}/../PlugIns/Charts")
add_custom_command(TARGET chartsplugin POST_BUILD
COMMAND ${CMAKE_COMMAND} -E make_directory ${bundle_charts_dir}
COMMAND ${CMAKE_COMMAND} -E copy_if_different
$<TARGET_FILE:chartsplugin> ${bundle_charts_dir}
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${chars_qmldir_file} ${bundle_charts_dir}
VERBATIM
)
endif()
endif()
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLEDIR}/Charts")
install(TARGETS chartsplugin
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qmldir
DESTINATION "${INSTALL_EXAMPLEDIR}")
|