-
Notifications
You must be signed in to change notification settings - Fork 1
/
motion.pro
43 lines (31 loc) · 902 Bytes
/
motion.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-05-27T20:31:23
#
#-------------------------------------------------
QT += core gui
QT_CONFIG -= no-pkg-config
CONFIG += link_pkgconfig
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = excutable
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
VideoProcessor.cpp \
SpatialFilter.cpp \
MagnifyDialog.cpp
HEADERS += mainwindow.h \
VideoProcessor.h \
SpatialFilter.h \
MagnifyDialog.h
FORMS += mainwindow.ui \
MagnifyDialog.ui
RESOURCES += \
myResources.qrc
win32 {
message("* Using settings for Windows.")
INCLUDEPATH += C://opencv//release//install//include//opencv2
INCLUDEPATH += C://opencv//release//install//include//opencv
INCLUDEPATH += C://opencv//release//install//include
LIBS += C://opencv//release//lib//*.a
}