From e668b8c846175f90cf22b456c5e5a4cc85410da4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 17 Feb 2011 10:30:08 +0000 Subject: Jack session support for ingen. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2978 a436a847-0d15-0410-975c-d299462d15a1 --- src/shared/Configuration.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/shared') diff --git a/src/shared/Configuration.cpp b/src/shared/Configuration.cpp index 273fd6ac..d1845a44 100644 --- a/src/shared/Configuration.cpp +++ b/src/shared/Configuration.cpp @@ -1,5 +1,5 @@ /* This file is part of Ingen. - * Copyright (C) 2010 David Robillard + * Copyright (C) 2010-2011 David Robillard * * Ingen is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software @@ -16,6 +16,7 @@ */ #include "raul/Atom.hpp" + #include "Configuration.hpp" using namespace Raul; @@ -45,6 +46,9 @@ Configuration::Configuration() .add("help", 'h', "Print this help message", Atom::BOOL, false) .add("jack-client", 'n', "JACK client name", Atom::STRING, "ingen") .add("jack-server", 's', "JACK server name", Atom::STRING, "") +#ifdef INGEN_JACK_SESSION + .add("uuid", 'u', "JACK session UUID", Atom::STRING, "") +#endif .add("load", 'l', "Load patch", Atom::STRING, Atom()) .add("parallelism", 'p', "Number of concurrent process threads", Atom::INT, 1) .add("path", 'L', "Target path for loaded patch", Atom::STRING, Atom()) -- cgit v1.2.1