mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 19:24:33 +00:00
36 lines
815 B
Prolog
36 lines
815 B
Prolog
TEMPLATE = app
|
|
TARGET = basic
|
|
QT += qml quick
|
|
SOURCES += main.cpp
|
|
CONFIG += link_pkgconfig
|
|
static {
|
|
QT += svg
|
|
QTPLUGIN += qtvirtualkeyboardplugin
|
|
}
|
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/virtualkeyboard/basic
|
|
INSTALLS += target
|
|
|
|
RESOURCES += \
|
|
demo.qrc
|
|
|
|
OTHER_FILES += \
|
|
Basic.qml \
|
|
basic-b2qt.qml \
|
|
content/AutoScroller.qml \
|
|
content/HandwritingModeButton.qml \
|
|
content/TextArea.qml \
|
|
content/TextField.qml \
|
|
|
|
disable-xcb {
|
|
message("The disable-xcb option has been deprecated. Please use disable-desktop instead.")
|
|
CONFIG += disable-desktop
|
|
}
|
|
|
|
disable-desktop|android-embedded|!isEmpty(CROSS_COMPILE)|qnx {
|
|
DEFINES += MAIN_QML=\\\"basic-b2qt.qml\\\"
|
|
} else {
|
|
DEFINES += MAIN_QML=\\\"Basic.qml\\\"
|
|
}
|
|
DESTDIR="$$PWD/../../build"
|