blob: e9fa9f7e4e82c87ef9f0a7ff973a68d46a1d9b22 (
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
|
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 += $${TARGET}.hxx
SOURCES += $${TARGET}.cxx
LIBS += -ltoml
TARGET = qqc2$$TARGET
target.path = $$[QT_INSTALL_QML]/$$QML_IMPORT_NAME
INSTALLS += import style target
|