-
Notifications
You must be signed in to change notification settings - Fork 1
/
reverscreen.pro
98 lines (83 loc) · 2.13 KB
/
reverscreen.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
QT += core gui concurrent
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = REVERSCREEN
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
cv/cvmodelbuilder.cpp \
cv/cvmodel.cpp \
cv/cvmodelbuilderoptions.cpp \
dialogs/fullscreenselectiondialog.cpp \
dialogs/helpdialog.cpp \
dock/colorswidget.cpp \
dock/markerwidget.cpp \
controls/coloractionwidget.cpp \
accent/rectangleaccentpainter.cpp \
accent/cinemaaccentpainter.cpp \
accent/markeraccentpainter.cpp \
selector/cinemaselector.cpp \
selector/cvselector.cpp \
selector/markerselector.cpp \
awesomeservice.cpp \
widgetutils.cpp \
rsview.cpp \
userselection.cpp \
params.cpp
HEADERS += mainwindow.h \
cv/cvmodelbuilder.h \
cv/cvmodel.h \
cv/cvmodelbuilderoptions.h \
dialogs/fullscreenselectiondialog.h \
dialogs/helpdialog.h \
dock/markerwidget.h \
dock/colorswidget.h \
controls/coloractionwidget.h \
accent/accentpainter.h \
accent/rectangleaccentpainter.h \
accent/cinemaaccentpainter.h \
accent/markeraccentpainter.h \
selector/selector.h \
selector/cinemaselector.h \
selector/cvselector.h \
selector/markerselector.h \
awesomeservice.h \
widgetutils.h \
rsview.h \
userselection.h \
params.h
RESOURCES += \
reverscreen.qrc
win32 {
CONFIG(release, debug|release)
{
OPENCV_PATH = C:/Opencv/mingw_release
}
CONFIG(debug, debug|release)
{
OPENCV_PATH = C:/Opencv/mingw_debug
}
INCLUDEPATH += $$OPENCV_PATH/include
LIBS += -L"$$OPENCV_PATH/x86/mingw/lib"
LIBS += -lopencv_core2413.dll -lopencv_imgproc2413.dll
LIBS += -lgdi32
QMAKE_LFLAGS_RELEASE += -static -static-libgcc
RC_ICONS += icons/reverscreen.ico
}
unix {
INCLUDEPATH += /usr/local/include
LIBS += -L/usr/local/lib
LIBS += -lopencv_core -lopencv_imgproc -lz
ICON = icons/reverscreen.icns
}
osx {
QMAKE_INFO_PLIST = Info.plist
}
QMAKE_CXXFLAGS += -Wno-deprecated-declarations
include(platform/platform.pri)
include(QtAwesome/QtAwesome.pri)
SUBDIRS += QtAwesome/QtAwesome.pro \
QtAwesome/QtAwesome.pro
DISTFILES += \
BUILDING \
LICENSE \
README.md