-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCameraMouseSuite-cross-platform.pro
100 lines (80 loc) · 2.43 KB
/
CameraMouseSuite-cross-platform.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
99
100
#-------------------------------------------------
# Camera Mouse Suite
# Copyright (C) 2015, Andrew Kurauchi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#-------------------------------------------------
QT += core gui multimedia multimediawidgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = CameraMouseSuite
TEMPLATE = app
unix {
QT_CONFIG -= no-pkg-config
CONFIG += c++11 link_pkgconfig
LIBS += -L/usr/local/lib
mac {
PKG_CONFIG = /usr/local/bin/pkg-config
}
linux {
PKGCONFIG += x11
}
PKGCONFIG += opencv
}
mac {
LIBS += -framework ApplicationServices \
-framework AppKit \
-framework Foundation
OBJECTIVE_SOURCES += MacKeyboard.mm
}
win32 {
INCLUDEPATH += $$(OPENCV_INCLUDE) \
$$(OPENCV_INCLUDE)/opencv
CONFIG(debug, debug|release) {
LIBS += $$(OPENCV_DIR)/lib/*d.lib
message(Debug configuration!)
}
CONFIG(release, debug|release) {
LIBS += -L$$(OPENCV_DIR)/lib/ \
-lopencv_core2411 \
-lopencv_imgproc2411 \
-lopencv_objdetect2411 \
-lopencv_video2411
message(Release configuration!)
}
}
SOURCES += *.cpp
HEADERS += *.h
FORMS += mainWindow.ui
OTHER_FILES += \
README.md \
cascades/*.xml
RESOURCES += \
icons.qrc
# Copy haar cascade files
SRC = $${PWD}/cascades
DEST = $${OUT_PWD}/cascades
win32 {
CONFIG(debug, debug|release) DEST = $${OUT_PWD}/debug/cascades
CONFIG(release, debug|release) DEST = $${OUT_PWD}/release/cascades
SRC ~= s,/,\\,g
DEST ~= s,/,\\,g
}
mac {
DEST = $${OUT_PWD}/CameraMouseSuite.app/Contents/MacOS
}
copydata.commands = $(COPY_DIR) $$SRC $$DEST
first.depends = $(first) copydata
export(first.depends)
export(copydata.commands)
QMAKE_EXTRA_TARGETS += first copydata