2019-05-21 15:05:19 +02:00
|
|
|
@if "%{UseVirtualKeyboard}" == "true"
|
|
|
|
|
QT += quick virtualkeyboard
|
|
|
|
|
@else
|
2017-01-26 16:29:28 +01:00
|
|
|
QT += quick
|
2019-05-21 15:05:19 +02:00
|
|
|
@endif
|
|
|
|
|
|
2015-02-20 09:44:33 +01:00
|
|
|
CONFIG += c++11
|
2014-10-10 15:36:11 +02:00
|
|
|
|
2020-06-24 12:24:27 +02:00
|
|
|
# You can make your code fail to compile if it uses deprecated APIs.
|
2016-10-10 16:57:22 +01:00
|
|
|
# In order to do so, uncomment the following line.
|
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
2017-03-27 20:46:31 +02:00
|
|
|
SOURCES += \\
|
|
|
|
|
%{MainCppFileName}
|
2017-01-26 16:29:28 +01:00
|
|
|
|
|
|
|
|
RESOURCES += qml.qrc
|
2019-07-26 16:46:42 +02:00
|
|
|
@if %{HasTranslation}
|
|
|
|
|
|
|
|
|
|
TRANSLATIONS += \\
|
|
|
|
|
%{TsFileName}
|
|
|
|
|
@endif
|
2017-01-26 16:29:28 +01:00
|
|
|
|
|
|
|
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
|
|
|
|
QML_IMPORT_PATH =
|
|
|
|
|
|
|
|
|
|
# Additional import path used to resolve QML modules just for Qt Quick Designer
|
|
|
|
|
QML_DESIGNER_IMPORT_PATH =
|
|
|
|
|
|
2014-10-10 15:36:11 +02:00
|
|
|
# Default rules for deployment.
|
2016-05-12 18:08:39 +02:00
|
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
|
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
|
|
|
!isEmpty(target.path): INSTALLS += target
|