| 1234567891011121314151617181920212223 |
- TEMPLATE = app
- QT += qml quick widgets websockets
- CONFIG += c++11
- SOURCES += main.cpp
- RESOURCES += qml.qrc
- # Additional import path used to resolve QML modules in Qt Creator's code model
- QML_IMPORT_PATH =
- # Default rules for deployment.
- include(deployment.pri)
- ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
- contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
- ANDROID_EXTRA_LIBS = \
- $$PWD/libcrypto.so \
- $$PWD/libssl.so
- }
|