As the sidelist gets more complex, managing it in CcWindow would make it very confusing. This patch introduces the CcPanelList, a widget that manages the sidelist. https://bugzilla.gnome.org/show_bug.cgi?id=767301
24 lines
511 B
Makefile
24 lines
511 B
Makefile
AM_CPPFLAGS = \
|
|
-DGNOMELOCALEDIR="\"$(datadir)/locale\""\
|
|
-DCC_ENABLE_ALT_CATEGORIES \
|
|
-I$(top_srcdir) \
|
|
$(SHELL_CFLAGS) \
|
|
$(CHEESE_CFLAGS) \
|
|
$(WACOM_PANEL_CFLAGS) \
|
|
-I$(top_srcdir)/shell \
|
|
-I$(top_srcdir)/panels/common \
|
|
-I$(top_srcdir)/libgd
|
|
|
|
noinst_LTLIBRARIES = libshell_alt.la
|
|
|
|
libshell_alt_la_SOURCES = \
|
|
cc-panel-list.c \
|
|
cc-panel-list.h \
|
|
cc-window.c \
|
|
cc-window.h
|
|
|
|
libshell_alt_la_LIBADD = $(top_builddir)/libgd/libgd.la
|
|
|
|
test:
|
|
|
|
-include $(top_srcdir)/git.mk
|