diff options
Diffstat (limited to 'app/app.pro')
-rw-r--r-- | app/app.pro | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/app.pro b/app/app.pro new file mode 100644 index 0000000..dcdb1aa --- /dev/null +++ b/app/app.pro @@ -0,0 +1,23 @@ +TARGET = aroundview +QT = quickcontrols2 +QT += widgets +QT += quick gui aglextras + + +SOURCES = main.cpp \ + camera.cpp \ + capturing.cpp \ + + +HEADERS += camera.h \ + capturing.h \ + +RESOURCES += AroundView.qrc\ + images/images.qrc + +INCLUDEPATH += /usr/include/opencv2 +DEPENDPATH += /usr/include/opencv2 + +LIBS += `pkg-config opencv --libs` + +include(app.pri) |