diff options
author | David Robillard <d@drobilla.net> | 2008-09-30 07:52:18 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-30 07:52:18 +0000 |
commit | 67c3b09a1e46cad7acf84801cd89ccef48fb2bf6 (patch) | |
tree | 23542ccc948534af9ceb58825684aa3197e73716 /src/libs/engine | |
parent | 5154ddbcccbb0448ee2ccea41db392f5d9d53303 (diff) | |
download | ingen-67c3b09a1e46cad7acf84801cd89ccef48fb2bf6.tar.gz ingen-67c3b09a1e46cad7acf84801cd89ccef48fb2bf6.tar.bz2 ingen-67c3b09a1e46cad7acf84801cd89ccef48fb2bf6.zip |
Wafify ingen.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1548 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine')
-rw-r--r-- | src/libs/engine/MidiDriver.hpp | 6 | ||||
-rw-r--r-- | src/libs/engine/wscript | 73 |
2 files changed, 78 insertions, 1 deletions
diff --git a/src/libs/engine/MidiDriver.hpp b/src/libs/engine/MidiDriver.hpp index bd801eb4..e268124b 100644 --- a/src/libs/engine/MidiDriver.hpp +++ b/src/libs/engine/MidiDriver.hpp @@ -80,9 +80,13 @@ public: void enable() {} void disable() {} + DriverPort* create_port(DuplexPort* patch_port) { return NULL; } + + DriverPort* driver_port(const Raul::Path& path) { return NULL; } + DriverPort* new_port(DuplexPort* patch_port) { return NULL; } - void add_port(DriverPort* port) {} + void add_port(DriverPort* port) {} DriverPort* remove_port(const Raul::Path& path) { return NULL; } void pre_process(ProcessContext& context) {} diff --git a/src/libs/engine/wscript b/src/libs/engine/wscript new file mode 100644 index 00000000..1ad135d3 --- /dev/null +++ b/src/libs/engine/wscript @@ -0,0 +1,73 @@ +#!/usr/bin/env python +import Params + +def build(bld): + obj = bld.create_obj('cpp', 'shlib') + obj.source = ''' + AudioBuffer.cpp + Buffer.cpp + ClientBroadcaster.cpp + ConnectionImpl.cpp + DuplexPort.cpp + Engine.cpp + EngineStore.cpp + Event.cpp + EventBuffer.cpp + EventSink.cpp + InputPort.cpp + InternalPlugin.cpp + JackAudioDriver.cpp + JackMidiDriver.cpp + LADSPAPlugin.cpp + LV2Info.cpp + LV2Plugin.cpp + MessageContext.cpp + MidiControlNode.cpp + MidiNoteNode.cpp + MidiTriggerNode.cpp + NodeBase.cpp + NodeFactory.cpp + OSCClientSender.cpp + OSCEngineReceiver.cpp + ObjectSender.cpp + OutputPort.cpp + PluginImpl.cpp + PortImpl.cpp + PostProcessor.cpp + ProcessSlave.cpp + QueuedEngineInterface.cpp + QueuedEvent.cpp + QueuedEventSource.cpp + TransportNode.cpp + engine.cpp + events/AllNotesOffEvent.cpp + events/ConnectionEvent.cpp + events/CreateNodeEvent.cpp + events/CreatePortEvent.cpp + events/DeactivateEvent.cpp + events/DestroyEvent.cpp + events/DisconnectAllEvent.cpp + events/DisconnectionEvent.cpp + events/LoadPluginsEvent.cpp + events/MidiLearnEvent.cpp + events/NoteEvent.cpp + events/RegisterClientEvent.cpp + events/RenameEvent.cpp + events/RequestAllObjectsEvent.cpp + events/RequestMetadataEvent.cpp + events/RequestObjectEvent.cpp + events/RequestPluginEvent.cpp + events/RequestPluginsEvent.cpp + events/RequestPortValueEvent.cpp + events/SendPortActivityEvent.cpp + events/SendPortValueEvent.cpp + events/SetMetadataEvent.cpp + events/SetPortValueEvent.cpp + events/UnregisterClientEvent.cpp + ''' + obj.includes = ['..', '../../common', '../..', './events'] + obj.name = 'libingen_engine' + obj.target = 'ingen_engine' + obj.uselib = 'GLIBMM GTHREAD SLV2 JACK LIBLO RAUL REDLANDMM SOUP' + obj.vnum = '0.0.0' + |