-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVideoGrabber.pro
More file actions
31 lines (24 loc) · 1.12 KB
/
VideoGrabber.pro
File metadata and controls
31 lines (24 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#-------------------------------------------------
#
# Project created by QtCreator 2018-04-20T13:11:22
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Video_Grabber
TEMPLATE = app
INCLUDEPATH += /usr/include/opencv4 /opt/EVT/eSDK/include /usr/lib/x86_64-linux-gnu/gstreamer-1.0
LIBS += -L/opt/EVT/eSDK/lib/ -lpthread -lEmergentCamera -lEmergentGenICam -lEmergentGigEVision -lopencv_core -lopencv_bgsegm -lopencv_imgcodecs -lgstreamer-1.0 -lopencv_imgproc -lopencv_video -lopencv_highgui -lopencv_videoio
SOURCES += main.cpp\
camera.cpp \
mainwindow.cpp \
camerasettings.cpp
HEADERS += mainwindow.h \
camera.h \
camerasettings.h
FORMS += mainwindow.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../usr/local/lib/release/ -lopencv_core
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../usr/local/lib/debug/ -lopencv_core
else:unix: LIBS += -L$$PWD/../../../../usr/local/lib/ -lopencv_core -lgstreamer-1.0
INCLUDEPATH += $$PWD/../../../../usr/include
DEPENDPATH += $$PWD/../../../../usr/include