-
Notifications
You must be signed in to change notification settings - Fork 3
/
QMTSim.pro
81 lines (81 loc) · 1.81 KB
/
QMTSim.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
CONFIG += qt release warn_on
DESTDIR = bin
FORMS = ui/additem.ui ui/mainwindow.ui
HEADERS = ip/IpEndpointName.h \
ip/NetworkingUtils.h \
ip/PacketListener.h \
ip/TimerListener.h \
ip/UdpSocket.h \
osc/MessageMappingOscPacketListener.h \
osc/OscException.h \
osc/OscHostEndianness.h \
osc/OscOutboundPacketStream.h \
osc/OscTypes.h \
src/TUIOSender.h \
src/TUIOanimation.h \
src/TouchData.h \
src/aboutQMTSim.h \
src/aboutQMTSimImpl.h \
src/addcursordialog.h \
src/addcusordialogimpl.h \
src/addellipsedialog.h \
src/addellipsedialogimpl.h \
src/configuredialog.h \
src/configuredialogimpl.h \
src/dialogimpl.h \
src/item.h \
src/mainwindowimpl.h \
src/scenecursor.h \
src/sceneellipse.h \
src/setpathscene.h \
src/setpathwindow.h \
src/setpathwinodwimpl.h \
src/table.h \
src/tangible_type.h \
src/debugWindow.h \
src/debugWindowImpl.h \
src/readmeDialog.h \
src/readmeDialogImpl.h \
src/resizeTableDialog.h \
src/resizeTableDialogImpl.h
INCLUDEPATH += ip osc
LIBS +=
MOC_DIR = build
OBJECTS_DIR = build
QT = core \
gui \
xml \
xmlpatterns \
network \
sql \
script
RESOURCES += resource.qrc
SOURCES = ip/IpEndpointName.cpp \
osc/OscOutboundPacketStream.cpp \
osc/OscTypes.cpp \
src/TUIOSender.cpp \
src/TUIOanimation.cpp \
src/aboutQMTSimImpl.cpp \
src/addcusordialogimpl.cpp \
src/addellipsedialogimpl.cpp \
src/configuredialogimpl.cpp \
src/dialogimpl.cpp \
src/item.cpp \
src/main.cpp \
src/mainwindowimpl.cpp \
src/readcursor.cpp \
src/readellipse.cpp \
src/readpolygon.cpp \
src/scenecursor.cpp \
src/sceneellipse.cpp \
src/setpathscene.cpp \
src/setpathwinodwimpl.cpp \
src/table.cpp \
src/tangible_type.cpp \
src/debugWindowImpl.cpp \
src/readmeDialogImpl.cpp \
src/resizeTableDialogImpl.cpp \
ip/posix/NetworkingUtils.cpp \
ip/posix/UdpSocket.cpp
TEMPLATE = app
UI_DIR = build