Skip to content

Commit

Permalink
libaudqt: add buildsys scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
kaniini committed Jul 24, 2014
1 parent 0333518 commit 721aa90
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Makefile
Expand Up @@ -6,6 +6,10 @@ ifeq ($(USE_GTK),yes)
SUBDIRS += libaudgui
endif

ifeq ($(USE_QT),yes)
SUBDIRS += libaudqt
endif

ifeq ($(USE_DBUS),yes)
SUBDIRS := dbus audtool ${SUBDIRS}
endif
Expand All @@ -19,6 +23,10 @@ ifeq ($(USE_GTK),yes)
libaudgui: libaudcore
endif

ifeq ($(USE_QT),yes)
libaudqt: libaudcore
endif

ifeq ($(USE_DBUS),yes)
audacious audtool: dbus
endif
27 changes: 27 additions & 0 deletions src/libaudqt/Makefile
@@ -0,0 +1,27 @@
SHARED_LIB = ${LIB_PREFIX}audqt${LIB_SUFFIX}
LIB_MAJOR = 0
LIB_MINOR = 0

SRCS =

INCLUDES =

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

includesubdir = libaudqt

LD = ${CXX}

CPPFLAGS := -I.. -I../.. \
${CPPFLAGS} \
${GLIB_CFLAGS} \
${QT_CFLAGS} \
${LIBGUESS_CFLAGS}

CFLAGS += ${LIB_CFLAGS}

LIBS := -L../libaudcore -laudcore \
${LIBS} -lm \
${GLIB_LIBS} \
${QT_LIBS}

0 comments on commit 721aa90

Please sign in to comment.