Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.52 KB | None | 0 0
  1. QT += quick multimedia
  2. #QT += androidextras
  3. CONFIG += c++11
  4.  
  5. # The following define makes your compiler emit warnings if you use
  6. # any feature of Qt which as been marked deprecated (the exact warnings
  7. # depend on your compiler). Please consult the documentation of the
  8. # deprecated API in order to know how to port your code away from it.
  9. DEFINES += QT_DEPRECATED_WARNINGS
  10.  
  11. # You can also make your code fail to compile if you use deprecated APIs.
  12. # In order to do so, uncomment the following line.
  13. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  14. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
  15.  
  16. SOURCES += main.cpp \
  17.     settings.cpp \
  18.     browser.cpp
  19.  
  20. RESOURCES += qml.qrc \
  21.     pictures.qrc
  22.  
  23. # Additional import path used to resolve QML modules in Qt Creator's code model
  24. QML_IMPORT_PATH =
  25.  
  26. # Additional import path used to resolve QML modules just for Qt Quick Designer
  27. QML_DESIGNER_IMPORT_PATH =
  28.  
  29. # Default rules for deployment.
  30. qnx: target.path = /tmp/$${TARGET}/bin
  31. else: unix:!android: target.path = /opt/$${TARGET}/bin
  32. !isEmpty(target.path): INSTALLS += target
  33.  
  34. HEADERS += \
  35.     settings.h \
  36.     browser.h
  37.  
  38. DISTFILES += \
  39.     android/AndroidManifest.xml \
  40.     android/gradle/wrapper/gradle-wrapper.jar \
  41.     android/gradlew \
  42.     android/res/values/libs.xml \
  43.     android/build.gradle \
  44.     android/gradle/wrapper/gradle-wrapper.properties \
  45.     android/gradlew.bat
  46.  
  47. ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement