diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2012-01-23 05:39:50 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2012-01-23 05:39:50 -0600 |
commit | 4f4190f71f8495e5bcf6779d73157931572e42ac (patch) | |
tree | f580039098edc4be81bd39305f052013d18e8d38 /tests/Makefile.am | |
parent | 8cb8b9f16b2f24dd99e7e4d86cb46415bfa99cd9 (diff) | |
download | libayatana-indicator-4f4190f71f8495e5bcf6779d73157931572e42ac.tar.gz libayatana-indicator-4f4190f71f8495e5bcf6779d73157931572e42ac.tar.bz2 libayatana-indicator-4f4190f71f8495e5bcf6779d73157931572e42ac.zip |
another iteration of the indicator-object visibility support patch, incorporating ideas from discussion with ted
- some functions were public when they should have been private
- the hide/show handler is now a virtual function & is documented in indicator-object.h
- added unit tests
- the GSettings monitor has been removed
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index f11a9d1..a70ee58 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -14,7 +14,8 @@ lib_LTLIBRARIES = \ libdummy-indicator-blank.la \ libdummy-indicator-null.la \ libdummy-indicator-signaler.la \ - libdummy-indicator-simple.la + libdummy-indicator-simple.la \ + libdummy-indicator-visible.la DBUS_RUNNER=dbus-test-runner --dbus-config /usr/share/dbus-test-runner/session.conf XVFB_RUN=". $(srcdir)/run-xvfb.sh" @@ -162,6 +163,26 @@ libdummy_indicator_simple_la_LDFLAGS = \ -avoid-version ############################# +# Dummy Indicator Visible +############################# + +libdummy_indicator_visible_la_SOURCES = \ + dummy-indicator-visible.c + +libdummy_indicator_visible_la_CFLAGS = \ + -Wall -Werror \ + $(LIBINDICATOR_CFLAGS) -I$(top_srcdir) + +libdummy_indicator_visible_la_LIBADD = \ + $(LIBINDICATOR_LIBS) \ + -L$(top_builddir)/libindicator/.libs \ + $(INDICATOR_LIB) + +libdummy_indicator_visible_la_LDFLAGS = \ + -module \ + -avoid-version + +############################# # Service Shutdown Timeout ############################# |