summaryrefslogtreecommitdiffstats
path: root/src/ingen/cmdline.ggo
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-12-19 21:37:50 +0000
committerDavid Robillard <d@drobilla.net>2009-12-19 21:37:50 +0000
commit19045ab92aa7e996971584a0dc8780d1d58b498b (patch)
tree619c73deb7fd64ce31c5167490d1ae186dbb2695 /src/ingen/cmdline.ggo
parent4613a2e15f1122ecf6830171de0ab18dc22fefff (diff)
downloadingen-19045ab92aa7e996971584a0dc8780d1d58b498b.tar.gz
ingen-19045ab92aa7e996971584a0dc8780d1d58b498b.tar.bz2
ingen-19045ab92aa7e996971584a0dc8780d1d58b498b.zip
New ingen module (library, not e.g. LV2 plugin) design.
Much cleaner interface and general usage of Ingen as a library. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2314 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/ingen/cmdline.ggo')
-rw-r--r--src/ingen/cmdline.ggo37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/ingen/cmdline.ggo b/src/ingen/cmdline.ggo
deleted file mode 100644
index 2892e65a..00000000
--- a/src/ingen/cmdline.ggo
+++ /dev/null
@@ -1,37 +0,0 @@
-# Process this file with gengetopt to generate the necessary code (in cmdline.h, cmdline.c)
-
-package "ingen"
-purpose "A modular realtime audio processing system"
-
-description "Ingen can be run in various configurations. The engine can
-run as a stand-alone server controlled by OSC, or internal to
-another process (e.g. the GUI). The GUI can communicate with the engine
-via either method, and many GUIs (or other things) may connect to an
-engine via OSC.
-
-Examples:
-
- ingen -e - Run an engine, listen for OSC
- ingen -g - Run a GUI, connect via OSC
- ingen -eg - Run an engine and a GUI in one process
-
-The -l (load) option can be used in all cases:
-
- ingen -el patch.ingen.ttl - Run an engine and load a patch
- ingen -gl patch.ingen.ttl - Run a GUI and load a patch
- ingen -egl patch.ingen.ttl - Run an engine and a GUI and load a patch
-
-Options:
-"
-
-option "client-port" C "Client OSC port" int no
-option "connect" c "Connect to existing engine at URI" string no default="osc.udp://localhost:16180"
-option "engine" e "Run (JACK) engine" flag off
-option "engine-port" E "Engine listen port" int no default="16180"
-option "engine-name" n "Engine JACK client name" string no default="ingen"
-option "gui" g "Launch the GTK graphical interface" flag off
-option "load" l "Load patch" string no
-option "parallelism" p "Number of concurrent process threads" int no default="1"
-option "path" L "Target path for loaded patch" string no
-option "run" r "Run script" string no
-