Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

OS X: update project file for Qt5 support.

- Qt5 doesn't support PPC anymore, so always build for x86 only.
- Qt5 requires the use of the multimedia module (as Windows).

Change-Id: I7d54faffe9d2fb557f55234ba7b81a508d92a38b

+15 -1
+15 -1
rbutil/rbutilqt/rbutilqt.pro
··· 140 140 win32 { 141 141 QT += multimedia 142 142 } 143 + macx { 144 + QT += multimedia 145 + } 143 146 } 144 147 145 148 dbg { ··· 187 190 } 188 191 189 192 # if -config intel is specified use 10.5 SDK and don't build for PPC 193 + contains(QT_MAJOR_VERSION, 5) { 194 + macx { 195 + CONFIG += intel 196 + message("Qt5 doesn't support PPC anymore, building x86 only") 197 + } 198 + } 190 199 macx:!intel { 191 200 CONFIG += ppc 192 201 QMAKE_LFLAGS_PPC=-mmacosx-version-min=10.4 -arch ppc ··· 195 204 } 196 205 macx:intel { 197 206 QMAKE_LFLAGS_X86=-mmacosx-version-min=10.5 -arch i386 198 - QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.5.sdk 207 + contains(QT_MAJOR_VERSION, 5) { 208 + QMAKE_MAC_SDK=macosx 209 + } 210 + !contains(QT_MAJOR_VERSION, 5) { 211 + QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.5.sdk 212 + } 199 213 QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.5 200 214 } 201 215 macx {