-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenStopMotion.pro
More file actions
122 lines (119 loc) · 2.52 KB
/
OpenStopMotion.pro
File metadata and controls
122 lines (119 loc) · 2.52 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
TEMPLATE = app
TARGET = OpenStopMotion
QT += core \
gui \
opengl
CONFIG += debug_and_release
CONFIG(debug, debug|release) {
win32:TARGET = OpenStopMotion
unix:TARGET = debug/OpenStopMotion
}
else {
win32:TARGET = OpenStopMotion
unix:TARGET = release/OpenStopMotion
}
HEADERS += include/osm.h \
src/FrameBuffer.h \
src/arduino.h \
gui/ledslider.h \
gui/ledcontrol.h \
gui/framepaint.h \
gui/ppl7framepainter.h \
gui/stopmocap.h \
gui/selectscene.h \
src/savethread.h \
gui/myslider.h \
gui/ppl7imageviewer.h \
src/device.h \
include/config.h \
gui/arduinosketch.h \
src/bluebox.h \
gui/release.h \
gui/motioncontrol.h \
src/picontrol.h
SOURCES += src/FrameBuffer.cpp \
src/arduino.cpp \
gui/ledslider.cpp \
gui/ledcontrol.cpp \
gui/framepaint.cpp \
gui/ppl7framepainter.cpp \
gui/stopmocap.cpp \
gui/selectscene.cpp \
src/savethread.cpp \
gui/myslider.cpp \
gui/ppl7imageviewer.cpp \
src/device_v4l2.cpp \
src/device_win32.cpp \
src/main.cpp \
src/config.cpp \
src/bluebox.cpp \
gui/release.cpp \
gui/motioncontrol.cpp \
src/picontrol.cpp
FORMS += gui/stopmocap.ui \
gui/ledslider.ui \
gui/ledcontrol.ui \
gui/framepaint.ui \
gui/selectscene.ui \
gui/myslider.ui \
gui/arduinosketch.ui \
gui/release.ui \
gui/motioncontrol.ui
RESOURCES += resources.qrc
RC_FILE = resource.rc
INCLUDEPATH += gui
INCLUDEPATH += src
unix:INCLUDEPATH += ../tmp/include
unix:INCLUDEPATH += ./include
unix:INCLUDEPATH += /usr/local/include
win32:INCLUDEPATH += C:/mingw/usr/local/include
win32:QMAKE_LIBDIR += C:/mingw/usr/local/lib
win32:QMAKESPEC = C:/Qt/4.7.4/mkspecs/win32-g++
CONFIG(debug, debug|release) {
# Debug
unix:LIBS += `ppl7-config \
--libs \
debug`
win32:LIBS += -lppl7-debug \
-lpcre \
-liconv \
-lmp3lame \
-lz \
-lbz2 \
-lcurl \
-lidn \
-lssl \
-lmcrypt \
-lcrypto \
-lws2_32 \
-ldnsapi \
-lz \
-lbz2 \
-lvfw32 \
-lgdi32
}
else {
# Release
unix:LIBS += `ppl7-config \
--libs \
release`
win32:LIBS += -lppl7 \
-lpcre \
-liconv \
-lmp3lame \
-lz \
-lbz2 \
-lcurl \
-lidn \
-lssl \
-lmcrypt \
-lcrypto \
-lws2_32 \
-ldnsapi \
-lz \
-lbz2 \
-lvfw32 \
-lgdi32
}
CODECFORSRC = UTF-8
CODECFORTR = UTF-8