diff options
Diffstat (limited to 'qootstrap.pro')
| -rw-r--r-- | qootstrap.pro | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/qootstrap.pro b/qootstrap.pro new file mode 100644 index 0000000..4f50f3d --- /dev/null +++ b/qootstrap.pro @@ -0,0 +1,24 @@ +TEMPLATE = lib +CONFIG += plugin qmltypes +QT += qml + +QML_IMPORT_NAME = Bootstrap +QML_IMPORT_MAJOR_VERSION = 5 +QML_IMPORT_MINOR_VERSION = 3 + +import.files = \ + qmldir \ + $${QML_IMPORT_NAME}.qml +import.path = $$[QT_INSTALL_QML]/$$QML_IMPORT_NAME + +style.files = \ + ApplicationWindow.qml +style.path = $$[QT_INSTALL_QML]/QtQuick/Controls.2/$$QML_IMPORT_NAME + +HEADERS += $${QML_IMPORT_NAME}.hxx +SOURCES += \ + $${QML_IMPORT_NAME}.cxx \ + tomlc99/toml.c +target.path = $$[QT_INSTALL_QML]/$$QML_IMPORT_NAME + +INSTALLS += import style target |