app.pro Example File

tutorials/extending-qml/chapter6-plugins/app.pro
TARGET = chapter6-plugins
QT += qml quick

# Ensure that the application will see the import path for the Charts module:
#   * On Windows, do not build into a debug/release subdirectory.
#   * On OS X, add the plugin files into the bundle.
win32: DESTDIR = ./
osx {
    charts.files = $$OUT_PWD/Charts
    charts.path = Contents/PlugIns
    QMAKE_BUNDLE_DATA += charts
}

SOURCES += main.cpp
RESOURCES += app.qrc

target.path = $$[QT_INSTALL_EXAMPLES]/qml/tutorials/extending-qml/chapter6-plugins
INSTALLS += target

© 2018 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.