-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQtCampp.pro
44 lines (31 loc) · 1.05 KB
/
QtCampp.pro
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
32
33
34
35
36
37
38
39
40
41
42
43
44
#-------------------------------------------------
#
# Project created by QtCreator 2016-06-19T01:35:57
#
#-------------------------------------------------
QT += core gui
CONFIG += qtcampp #enabling gui integration of subprojects
CONFIG += v4ldevices #comment out to disable usage of v4l
CONFIG += ptpdevices #enables ptp cameras
QMAKE_CXXFLAGS += -std=c++11 -Wall -Werror=strict-aliasing -fstrict-aliasing -Wctor-dtor-privacy -Werror=delete-non-virtual-dtor
QMAKE_CXXFLAGS += -fexceptions -Werror=return-type -Werror=overloaded-virtual
QMAKE_CXXFLAGS += -Werror=strict-aliasing -Wstrict-aliasing=2
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG(debug, debug|release)
{
DEFINES += _DEBUG
}
INCLUDEPATH += $$PWD
include(./libusb/libusb.pri)
include(./devicing/devicing.pri)
include (./ui/ui.pri)
include (./video/video.pri)
#comment include below to disable opencv filter (all "tools" actually) usage
include (tools/tools.pri)
TARGET = qtcampp
TEMPLATE = app
SOURCES += main.cpp
RESOURCES += \
resources.qrc
HEADERS += \
utils.h