Advertisement
Guest User

QtCamera.pro

a guest
Oct 29th, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2018-10-28T14:55:52
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui widgets multimedia quick
  8.  
  9. TARGET = QtCamera
  10. TEMPLATE = app
  11.  
  12. # The following define makes your compiler emit warnings if you use
  13. # any feature of Qt which has been marked as deprecated (the exact warnings
  14. # depend on your compiler). Please consult the documentation of the
  15. # deprecated API in order to know how to port your code away from it.
  16. DEFINES += QT_DEPRECATED_WARNINGS
  17.  
  18. # You can also make your code fail to compile if you use deprecated APIs.
  19. # In order to do so, uncomment the following line.
  20. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  21. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  22.  
  23. CONFIG += c++11
  24.  
  25. SOURCES += \
  26. main.cpp \
  27. facefilter.cpp
  28.  
  29. HEADERS += \
  30. facefilter.h
  31.  
  32.  
  33. # Default rules for deployment.
  34. qnx: target.path = /tmp/$${TARGET}/bin
  35. else: unix:!android: target.path = /opt/$${TARGET}/bin
  36. !isEmpty(target.path): INSTALLS += target
  37.  
  38. DISTFILES += \
  39. main.qml
  40.  
  41. RESOURCES += \
  42. ressources.qrc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement