blob: 8bf06ce5d6a5f7d5e224f260c6de216c4c43286b (
plain)
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
|
TEMPLATE = lib
CONFIG += plugin qmltypes
QT += qml
QML_IMPORT_NAME = Bootstrap
QML_IMPORT_MAJOR_VERSION = 5
QML_IMPORT_MINOR_VERSION = 3
import.files = imports/$$QML_IMPORT_NAME/qmldir
import.path = $$[QT_INSTALL_QML]/$$QML_IMPORT_NAME
style.files = \
ApplicationWindow.qml \
ComboBox.qml \
Label.qml \
Page.qml \
ToolBar.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
android: TARGET = qml_$${QML_IMPORT_NAME}_$$TARGET
ios: CONFIG(debug, debug|release): TARGET = $${TARGET}_debug
target.path = $$[QT_INSTALL_QML]/$$QML_IMPORT_NAME
INSTALLS += import style target
|