-
Notifications
You must be signed in to change notification settings - Fork 1
/
ImageClipping.pro
65 lines (52 loc) · 1.27 KB
/
ImageClipping.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-01-26T14:44:21
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ImageClipping
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
imageclipper.cpp \
textimagecreator.cpp \
ruleeditor.cpp
HEADERS += mainwindow.h \
imageclipper.h \
textimagecreator.h \
ruleeditor.h
FORMS += mainwindow.ui
CONFIG(debug, release|debug):DEFINES += _DEBUG
!win32 {
INCLUDEPATH += /usr/local/Cellar/opencv/2.4.9/include
LIBS += -L/usr/local/Cellar/opencv/2.4.9/lib/ \
-lopencv_core \
-lopencv_imgproc \
-lopencv_highgui \
-lopencv_features2d
}
win32{
INCLUDEPATH += E:/Tools/opencv/build/include
CONFIG(debug):
{
LIBS += -LE:/Tools/opencv/build/x86/vc12/bin
LIBS += -LE:/Tools/opencv/build/x86/vc12/lib \
-lopencv_core248d \
-lopencv_imgproc248d \
-lopencv_highgui248d \
-lopencv_features2d248d
}
CONFIG(release):
{
LIBS += -LE:/Tools/opencv/build/x86/vc12/bin
LIBS += -LE:/Tools/opencv/build/x86/vc12/lib \
-lopencv_core248 \
-lopencv_imgproc248 \
-lopencv_highgui248 \
-lopencv_features2d248
}
}
RESOURCES += \
ImageClipping.qrc \
ImageClipping.qrc