Chris@1284
|
1
|
Chris@1284
|
2 CONFIG += release
|
Chris@1299
|
3
|
Chris@1299
|
4 #CONFIG -= release
|
Chris@1299
|
5 #CONFIG += debug
|
Chris@1299
|
6
|
Chris@1753
|
7 PREFIX_PATH = /usr/local
|
Chris@1753
|
8
|
Chris@1284
|
9 DEFINES += NDEBUG BUILD_RELEASE
|
Chris@1484
|
10 DEFINES += NO_TIMING NO_HIT_COUNTS
|
Chris@1284
|
11
|
Chris@1319
|
12 DEFINES += HAVE_PIPER HAVE_PLUGIN_CHECKER_HELPER
|
Chris@1319
|
13
|
Chris@1292
|
14 # Full set of defines expected for all platforms when we have the
|
Chris@1292
|
15 # sv-dependency-builds subrepo available to provide the dependencies.
|
Chris@1292
|
16
|
Chris@1292
|
17 DEFINES += \
|
Chris@1292
|
18 HAVE_BZ2 \
|
Chris@1292
|
19 HAVE_FFTW3 \
|
Chris@1292
|
20 HAVE_FFTW3F \
|
Chris@1292
|
21 HAVE_SNDFILE \
|
Chris@1292
|
22 HAVE_SAMPLERATE \
|
Chris@1292
|
23 HAVE_RUBBERBAND \
|
Chris@1292
|
24 HAVE_LIBLO \
|
Chris@1292
|
25 HAVE_MAD \
|
Chris@1292
|
26 HAVE_ID3TAG \
|
Chris@1292
|
27 HAVE_PORTAUDIO
|
Chris@1292
|
28
|
Chris@1292
|
29 # Default set of libs for the above. Config sections below may update
|
Chris@1292
|
30 # these.
|
Chris@1292
|
31
|
Chris@1292
|
32 LIBS += \
|
Chris@1292
|
33 -lbz2 \
|
Chris@1292
|
34 -lrubberband \
|
Chris@1292
|
35 -lfftw3 \
|
Chris@1292
|
36 -lfftw3f \
|
Chris@1292
|
37 -lsndfile \
|
Chris@1292
|
38 -lFLAC \
|
Chris@1292
|
39 -logg \
|
Chris@1292
|
40 -lvorbis \
|
Chris@1292
|
41 -lvorbisenc \
|
Chris@1292
|
42 -lvorbisfile \
|
Chris@1292
|
43 -logg \
|
Chris@1292
|
44 -lmad \
|
Chris@1292
|
45 -lid3tag \
|
Chris@1292
|
46 -lportaudio \
|
Chris@1292
|
47 -lsamplerate \
|
Chris@1292
|
48 -lz \
|
Chris@1292
|
49 -lsord-0 \
|
Chris@1292
|
50 -lserd-0 \
|
Chris@1292
|
51 -llo \
|
Chris@1292
|
52 -lcapnp \
|
Chris@1292
|
53 -lkj
|
Chris@1292
|
54
|
Chris@1284
|
55 win32-g++ {
|
Chris@1292
|
56
|
Chris@1292
|
57 # This config is currently used for 32-bit Windows builds.
|
Chris@1292
|
58
|
Chris@1284
|
59 INCLUDEPATH += sv-dependency-builds/win32-mingw/include
|
Chris@1292
|
60
|
Chris@1295
|
61 LIBS += -Lrelease -Lsv-dependency-builds/win32-mingw/lib -L../sonic-visualiser/sv-dependency-builds/win32-mingw/lib
|
Chris@1295
|
62
|
Chris@1546
|
63 DEFINES += NOMINMAX _USE_MATH_DEFINES CAPNP_LITE
|
Chris@1295
|
64
|
Chris@1295
|
65 QMAKE_CXXFLAGS_RELEASE += -ffast-math
|
Chris@1292
|
66
|
Chris@1292
|
67 # Don't have liblo
|
Chris@1292
|
68 DEFINES -= HAVE_LIBLO
|
Chris@1292
|
69 LIBS -= -llo
|
Chris@1292
|
70
|
Chris@1292
|
71 LIBS += -lwinmm -lws2_32
|
Chris@1284
|
72 }
|
Chris@1284
|
73
|
Chris@1284
|
74 win32-msvc* {
|
Chris@1292
|
75
|
Chris@1292
|
76 # This config is actually used only for 64-bit Windows builds.
|
Chris@1292
|
77 # even though the qmake spec is still called win32-msvc*. If
|
Chris@1292
|
78 # we want to do 32-bit builds with MSVC as well, then we'll
|
Chris@1292
|
79 # need to add a way to distinguish the two.
|
Chris@1292
|
80
|
Chris@1292
|
81 INCLUDEPATH += sv-dependency-builds/win64-msvc/include
|
Chris@1294
|
82
|
Chris@1294
|
83 ## This seems to be intruding even when we're supposed to be release
|
Chris@1294
|
84 # CONFIG(debug) {
|
Chris@1294
|
85 # LIBS += -NODEFAULTLIB:MSVCRT -Ldebug \
|
Chris@1294
|
86 # -L../sonic-visualiser/sv-dependency-builds/win64-msvc/lib/debug \
|
Chris@1294
|
87 # -L../sonic-visualiser/sv-dependency-builds/win64-msvc/lib
|
Chris@1294
|
88 # }
|
Chris@1292
|
89 CONFIG(release) {
|
Chris@1292
|
90 LIBS += -Lrelease \
|
Chris@1292
|
91 -L../sonic-visualiser/sv-dependency-builds/win64-msvc/lib
|
Chris@1292
|
92 }
|
Chris@1292
|
93
|
Chris@1546
|
94 DEFINES += NOMINMAX _USE_MATH_DEFINES CAPNP_LITE
|
Chris@1294
|
95
|
Chris@1294
|
96 QMAKE_CXXFLAGS_RELEASE += -fp:fast
|
Chris@1292
|
97
|
Chris@1292
|
98 # No Ogg/FLAC support in the sndfile build on this platform yet
|
Chris@1292
|
99 LIBS -= -lFLAC -logg -lvorbis -lvorbisenc -lvorbisfile
|
Chris@1292
|
100
|
Chris@1292
|
101 # These have different names
|
Chris@1292
|
102 LIBS -= -lsord-0 -lserd-0
|
Chris@1292
|
103 LIBS += -lsord -lserd
|
Chris@1292
|
104
|
Chris@1292
|
105 # Don't have liblo
|
Chris@1292
|
106 DEFINES -= HAVE_LIBLO
|
Chris@1292
|
107 LIBS -= -llo
|
Chris@1292
|
108
|
Chris@1292
|
109 LIBS += -ladvapi32 -lwinmm -lws2_32
|
Chris@1284
|
110 }
|
Chris@1284
|
111
|
Chris@1292
|
112 macx* {
|
Chris@1292
|
113
|
Chris@1292
|
114 # All Mac builds are 64-bit these days.
|
Chris@1292
|
115
|
Chris@1292
|
116 INCLUDEPATH += sv-dependency-builds/osx/include
|
Chris@1292
|
117 LIBS += -Lsv-dependency-builds/osx/lib
|
Chris@1292
|
118
|
cannam@1647
|
119 QMAKE_CXXFLAGS_RELEASE += -O3 -ffast-math
|
Chris@1295
|
120
|
Chris@1546
|
121 DEFINES += HAVE_COREAUDIO HAVE_VDSP
|
Chris@1292
|
122 LIBS += \
|
Chris@1292
|
123 -framework CoreAudio \
|
Chris@1292
|
124 -framework CoreMidi \
|
Chris@1292
|
125 -framework AudioUnit \
|
Chris@1292
|
126 -framework AudioToolbox \
|
Chris@1292
|
127 -framework CoreFoundation \
|
Chris@1292
|
128 -framework CoreServices \
|
Chris@1292
|
129 -framework Accelerate
|
Chris@1284
|
130 }
|
Chris@1284
|
131
|
Chris@1292
|
132 linux* {
|
Chris@1284
|
133
|
Chris@1292
|
134 message("Building without ./configure on Linux is unlikely to work")
|
Chris@1292
|
135 message("If you really want to try it, remove this from noconfig.pri")
|
Chris@1292
|
136 error("Refusing to build without ./configure first")
|
Chris@1292
|
137 }
|
Chris@1284
|
138
|