forked from EliasOenal/multimon-ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmultimonNG.pro
71 lines (63 loc) · 1.36 KB
/
multimonNG.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
TEMPLATE = app
CONFIG += console
CONFIG -= qt
HEADERS += \
multimon.h \
gen.h \
filter.h \
filter-i386.h
SOURCES += \
unixinput.c \
uart.c \
pocsag.c \
hdlc.c \
demod_zvei.c \
demod_ufsk12.c \
demod_poc24.c \
demod_poc12.c \
demod_poc5.c \
demod_hapn48.c \
demod_fsk96.c \
demod_dtmf.c \
demod_clipfsk.c \
demod_afsk24.c \
demod_afsk24_3.c \
demod_afsk24_2.c \
demod_afsk12.c \
costabi.c \
costabf.c \
clip.c \
demod_eas.c
macx{
DEFINES += DUMMY_AUDIO
DEFINES += NO_X11
DEFINES += ARCH_X86_64
#LIBS += -lX11 -L/usr/X11R6/lib -R/usr/X11R6/lib # If you care you can also compile this on OSX. Though
# since Apple will remove Xorg from Mountain Lion I feel
# like we should get rid of this dependency.
}
win32{
DEFINES += DUMMY_AUDIO
DEFINES += NO_X11
DEFINES += ONLY_RAW
DEFINES += WINDOWS
#DEFINES += ARCH_I386
}
unix:linux-g++-32:!symbian:!macx{
DEFINES += ARCH_I386
LIBS += -lX11
SOURCES += xdisplay.c \
demod_display.c
}
unix:linux-g++-64:!symbian:!macx{
DEFINES += ARCH_X86_64
LIBS += -lX11
SOURCES += xdisplay.c \
demod_display.c
}
unix:linux-g++:!symbian:!macx{
#DEFINES += ARCH_I386
LIBS += -lX11
SOURCES += xdisplay.c \
demod_display.c
}