From 47e6e67ecfcc2015c8e1112938d4e9fae4fb92f1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Nov 2020 11:03:07 +0100 Subject: Add command line option to print version --- src/main.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index db4721b..2763852 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -82,6 +82,17 @@ print_usage() std::cout << " -J, --no-jack Do not automatically attack to JACK.\n"; } +void +print_version() +{ + std::cout << "Patchage " PATCHAGE_VERSION << R"( +Copyright 2007-2020 David Robillard . +License GPLv3+: . +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +)"; +} + } // namespace int @@ -111,6 +122,9 @@ main(int argc, char** argv) options.alsa_driver_autoattach = false; } else if (!strcmp(*argv, "-J") || !strcmp(*argv, "--no-jack")) { options.jack_driver_autoattach = false; + } else if (!strcmp(*argv, "-V") || !strcmp(*argv, "--version")) { + print_version(); + return 0; } else { std::cerr << "patchage: invalid option -- '" << *argv << "'\n"; print_usage(); -- cgit v1.2.1