From 720c5a33b6a49cf328fdd7611f49153cf8f60247 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 8 Apr 2020 14:51:57 +0300 Subject: Separate tests and examples into individual packages Also make cli module to be explicitly enabled via the config.cli configuration variable. --- examples/hello/README | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 examples/hello/README (limited to 'examples/hello/README') diff --git a/examples/hello/README b/examples/hello/README deleted file mode 100644 index dd14b01..0000000 --- a/examples/hello/README +++ /dev/null @@ -1,26 +0,0 @@ -This is a "Hello, world!" example that shows how to implement a very basic -command line interface using CLI. - -The example consists of the following files: - -hello.cli - Command line interface description in the CLI language. - -hello.hxx -hello.ixx -hello.cxx - Command line interface implementation in C++. These files are generated - by the CLI compiler from hello.cli using the following command line: - - cli hello.cli - -driver.cxx - Driver for the example. It first instantiates the option class which parses - the command line. The driver then examines the options and prints the - greeting string for each name passed as an argument. - -To run the example you can try the following command lines: - -$ ./driver --help -$ ./driver John Jane -$ ./driver --greeting Hi --exclamations 3 John Jane -- cgit v1.1