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.

Add msvc qmake config option for building with MSVC.

When building with MSVC we need to add the msvc folder to the include list, and
remove the libraries from the dependencies since they need to get built
separately.

Change-Id: I297787f32495da4541c67bfef549b4d1ad68dd18

+8 -3
+8 -3
rbutil/rbutilqt/rbutilqt.pro
··· 89 89 # flags in this order, put libucl at the end. 90 90 RBLIBS = rbspeex ipodpatcher sansapatcher mkamsboot mktccboot \ 91 91 mkmpioboot chinachippatcher mkimxboot ucl 92 - QMAKE_EXTRA_TARGETS += extralibs 93 - PRE_TARGETDEPS += extralibs 92 + !msvc { 93 + QMAKE_EXTRA_TARGETS += extralibs 94 + PRE_TARGETDEPS += extralibs 95 + } 96 + msvc { 97 + INCLUDEPATH += msvc 98 + } 94 99 95 100 # rule for creating ctags file 96 101 tags.commands = ctags -R --c++-kinds=+p --fields=+iaS --extra=+q $(SOURCES) ··· 105 110 } 106 111 107 112 # Needed by QT on Win 108 - INCLUDEPATH = $$_PRO_FILE_PWD_ $$_PRO_FILE_PWD_/irivertools \ 113 + INCLUDEPATH += $$_PRO_FILE_PWD_ $$_PRO_FILE_PWD_/irivertools \ 109 114 $$_PRO_FILE_PWD_/zlib $$_PRO_FILE_PWD_/base \ 110 115 $$_PRO_FILE_PWD_/zlib $$_PRO_FILE_PWD_/gui 111 116 INCLUDEPATH += $$RBBASE_DIR/rbutil/ipodpatcher $$RBBASE_DIR/rbutil/sansapatcher \