4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-02 20:49:35 +00:00
2022-08-20 13:16:49 +03:00

33 lines
625 B
Prolog

TEMPLATE = app
TARGET = basic
QT += qml quick
QT_FOR_CONFIG += virtualkeyboard
SOURCES += main.cpp
CONFIG += link_pkgconfig
contains(CONFIG, 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 \
!qtConfig(vkb-desktop) {
DEFINES += MAIN_QML=\\\"basic-b2qt.qml\\\"
} else {
DEFINES += MAIN_QML=\\\"Basic.qml\\\"
}