* Included config.h in all headers
* Don't define DBUS_API_SUBJECT_TO_CHANGE unless for old D-Bus versions * Use recursive mutex functions if libdbus supports it * Specify the path when adding match rules, otherwise messages wouldn't be forwarded to the right object under some circumstances * Added integration with the glib main loop (configure with --enable-glib) * Added a gtkmm dbus-browser clone to demonstrate glib integration * Fixed a typo in dbusxx-xml2cpp proxy output * Added python usage instructions for the Echo example git-svn-id: http://dev.openwengo.org/svn/openwengo/wengophone-ng/branches/wengophone-dbus-api/libs/dbus@10948 30a43799-04e7-0310-8b2b-ea0d24f86d0e
This commit is contained in:
parent
771ca71556
commit
48a1be9f2a
37 changed files with 427 additions and 23 deletions
22
examples/glib/Makefile.am
Normal file
22
examples/glib/Makefile.am
Normal file
|
@ -0,0 +1,22 @@
|
|||
EXTRA_DIST =
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include $(gtkmm_CFLAGS)
|
||||
|
||||
if HAVE_GTKMM
|
||||
noinst_PROGRAMS = dbus-browser
|
||||
endif
|
||||
|
||||
dbus_browser_SOURCES = dbus-glue.h dbus-browser.h dbus-browser.cpp
|
||||
dbus_browser_LDADD = $(top_builddir)/src/libdbus-c++-1.la $(gtkmm_LIBS)
|
||||
|
||||
dbus-glue.h: $(top_srcdir)/data/org.freedesktop.DBus.xml
|
||||
$(top_builddir)/tools/dbusxx-xml2cpp $^ --proxy=$@
|
||||
|
||||
BUILT_SOURCES = dbus-glue.h
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
dist-hook:
|
||||
cd $(distdir); rm -f $(BUILT_SOURCES)
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
Makefile.in
|
Loading…
Add table
Add a link
Reference in a new issue