From acbda29f838280ba98cf9e9e539e9d8a6e8fc6ad Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 9 Jun 2006 15:07:31 +0000 Subject: Added Om aka Graph aka god knows what git-svn-id: http://svn.drobilla.net/lad/grauph@9 a436a847-0d15-0410-975c-d299462d15a1 --- src/clients/Makefile.am | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/clients/Makefile.am (limited to 'src/clients/Makefile.am') diff --git a/src/clients/Makefile.am b/src/clients/Makefile.am new file mode 100644 index 00000000..24e6a3bb --- /dev/null +++ b/src/clients/Makefile.am @@ -0,0 +1,51 @@ +AM_CXXFLAGS = -I$(top_srcdir)/src/common -fno-exceptions -fno-rtti + +SUBDIRS = . python supercollider + +if BUILD_CONSOLE_CLIENTS +noinst_LIBRARIES = libomclient.a + +libomclient_a_CXXFLAGS = -I$(top_srcdir)/src/common -DPKGDATADIR=\"$(pkgdatadir)\" $(LIBGLADEMM_CFLAGS) $(GNOMECANVASMM_CFLAGS) $(JACK_CFLAGS) $(LXML2_CFLAGS) + +libomclient_a_SOURCES = \ + ClientInterface.h \ + OSCEngineInterface.h \ + OSCEngineInterface.cpp \ + OSCModelEngineInterface.h \ + OSCModelEngineInterface.cpp \ + OSCListener.h \ + OSCListener.cpp \ + SigClientInterface.h \ + DirectSigClientInterface.h \ + ThreadedSigClientInterface.h \ + ThreadedSigClientInterface.cpp \ + ModelEngineInterface.h \ + ModelClientInterface.h \ + ModelClientInterface.cpp \ + PresetModel.h \ + ControlModel.h \ + ObjectController.h \ + ObjectModel.h \ + ObjectModel.cpp \ + NodeModel.h \ + NodeModel.cpp \ + PortModel.h \ + PatchModel.h \ + PatchModel.cpp \ + PluginModel.h \ + PatchLibrarian.h \ + PatchLibrarian.cpp \ + ConnectionModel.h \ + ConnectionModel.cpp \ + $(top_srcdir)/src/common/util/Path.h \ + $(top_srcdir)/src/common/interface/ClientInterface.h \ + $(top_srcdir)/src/common/interface/EngineInterface.h + +SUBDIRS += patch_loader patches demolition + +endif # BUILD_CONSOLE_CLIENTS + +if BUILD_GTK_CLIENT +SUBDIRS += gtk +endif + -- cgit v1.2.1