3b15965514
* NEW: DBus.Session returns a connection to the session bus as a DBusConnection object. * NEW: DBus.System returns a connection to the system bus as a DBusConnection object. * NEW: DBusConnection.Introspect() is a method that returns the result of the Introspect() method on a specific object path. * NEW: DBusConnection.CallMethod() allows to call any D-Bus method. Marshalling is automatic, but D-Bus signature of input and output arguments must be provided. git-svn-id: svn://localhost/gambas/trunk@2205 867c0c6c-44f3-4631-809d-bfa615b0a4ec
15 lines
319 B
Makefile
15 lines
319 B
Makefile
COMPONENT = gb.dbus
|
|
include $(top_srcdir)/component.am
|
|
|
|
INCLUDES = @DBUS_INC@
|
|
|
|
gblib_LTLIBRARIES = gb.dbus.la
|
|
|
|
gb_dbus_la_LIBADD = @DBUS_LIB@
|
|
gb_dbus_la_LDFLAGS = -module @LD_FLAGS@ @DBUS_LDFLAGS@
|
|
|
|
gb_dbus_la_SOURCES = \
|
|
main.c main.h \
|
|
helper.c helper.h \
|
|
c_dbus.c c_dbus.h \
|
|
c_dbusconnection.c c_dbusconnection.h
|