Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ if test "x$USE_GTK" = "xyes" ; then
fi

if test "x$USE_QT" = "xyes" ; then
GENERAL_PLUGINS="$GENERAL_PLUGINS albumart-qt lyrics-qt playback-history-qt playlist-manager-qt search-tool-qt song-info-qt statusicon-qt"
GENERAL_PLUGINS="$GENERAL_PLUGINS albumart-qt filesystem-qt lyrics-qt playback-history-qt playlist-manager-qt search-tool-qt song-info-qt statusicon-qt"
GENERAL_PLUGINS="$GENERAL_PLUGINS qtui skins-qt"
VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS blur_scope-qt qt-spectrum vumeter-qt"
fi
Expand Down Expand Up @@ -893,6 +893,7 @@ if test "x$USE_QT" = "xyes" ; then
echo " Winamp Classic Interface: yes"
echo " Album Art: yes"
echo " Blur Scope: yes"
echo " Filesystem View: yes"
echo " OpenGL Spectrum Analyzer: $have_qtglspectrum"
echo " Playback History: yes"
echo " Playlist Manager: yes"
Expand Down
1 change: 1 addition & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ if meson.version().version_compare('>= 0.53')
'Winamp Classic Interface': true,
'Album Art': true,
'Blur Scope': true,
'Filesystem View': true,
'OpenGL Spectrum Analyzer': get_variable('have_qtglspectrum', false),
'Playback History': true,
'Playlist Manager': true,
Expand Down
13 changes: 13 additions & 0 deletions src/filesystem-qt/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
PLUGIN = filesystem-qt${PLUGIN_SUFFIX}

SRCS = filesystem-qt.cc

include ../../buildsys.mk
include ../../extra.mk

plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR}

LD = ${CXX}
CPPFLAGS += -I../.. ${QT_CFLAGS}
CFLAGS += ${PLUGIN_CFLAGS}
LIBS += ${QT_LIBS} -laudqt
Loading
Loading