-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOSCPACK.pro
55 lines (47 loc) · 1.22 KB
/
OSCPACK.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
CONFIG -= qt
CONFIG -= gui
TEMPLATE = lib
#Comment for dynamic library
#CONFIG += staticlib
DEFINES += QT_DEPRECATED_WARNINGS
CONFIG += c++11
TARGET = OSCPACK
win32: {
#VERSION = 1.1.0.3
#TARGET_EXT = .dll
QMAKE_TARGET_COMPANY = "Ross Bencina <[email protected]>"
QMAKE_TARGET_DESCRIPTION = "Open Sound Control packet manipulation library."
QMAKE_TARGET_COPYRIGHT = "MIT License."
QMAKE_TARGET_PRODUCT = "OSCPACK Library."
QMAKE_TARGET_ORIGINAL_FILENAME = OSCPACK.dll
RC_FILE += OSCPACK.rc
SOURCES += ip/win32/NetworkingUtils.cpp
SOURCES += ip/win32/UdpSocket.cpp
LIBS += -lkernel32 -lws2_32 -lwinmm
} else: {
VERSION = 1.1.0
SOURCES += ip/posix/NetworkingUtils.cpp
SOURCES += ip/posix/UdpSocket.cpp
target.path = /usr/lib
}
SOURCES += \
ip/IpEndpointName.cpp \
osc/OscOutboundPacketStream.cpp \
osc/OscPrintReceivedElements.cpp \
osc/OscReceivedElements.cpp \
osc/OscTypes.cpp
HEADERS += \
OSCPACK.rc \
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/OscPacketListener.h \
osc/OscPrintReceivedElements.h \
osc/OscReceivedElements.h \
osc/OscTypes.h