Skip to content

Commit cccd257

Browse files
filebrowser: Add GTK implementation of the plugin
1 parent 31b1eb1 commit cccd257

6 files changed

Lines changed: 892 additions & 0 deletions

File tree

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,7 @@ if test "x$USE_GTK" = "xyes" ; then
882882
echo " Winamp Classic Interface: yes"
883883
echo " Album Art: yes"
884884
echo " Blur Scope: yes"
885+
echo " File Browser: yes"
885886
echo " OpenGL Spectrum Analyzer: $have_glspectrum"
886887
echo " Playlist Manager: yes"
887888
echo " Search Tool: yes"

meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ if meson.version().version_compare('>= 0.53')
337337
'Winamp Classic Interface': true,
338338
'Album Art': true,
339339
'Blur Scope': true,
340+
'File Browser': true,
340341
'OpenGL Spectrum Analyzer': get_variable('have_glspectrum', false),
341342
'Playlist Manager': true,
342343
'Search Tool': true,

src/filebrowser/Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
PLUGIN = filebrowser${PLUGIN_SUFFIX}
2+
3+
SRCS = filebrowser.cc
4+
5+
include ../../buildsys.mk
6+
include ../../extra.mk
7+
8+
plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR}
9+
10+
LD = ${CXX}
11+
CFLAGS += ${PLUGIN_CFLAGS}
12+
CPPFLAGS += ${PLUGIN_CPPFLAGS} ${GTK_CFLAGS} -I../..
13+
LIBS += ${GTK_LIBS} -laudgui

0 commit comments

Comments
 (0)