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. --- cli-examples/features/README | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 cli-examples/features/README (limited to 'cli-examples/features/README') diff --git a/cli-examples/features/README b/cli-examples/features/README new file mode 100644 index 0000000..9416320 --- /dev/null +++ b/cli-examples/features/README @@ -0,0 +1,20 @@ +This example shows how to use various features of the CLI language. + +The example consists of the following files: + +options.cli + Command line interface description in the CLI language. + +options.hxx +options.ixx +options.cxx + Command line interface implementation in C++. These files are generated + by the CLI compiler from hello.cli using the following command line: + + cli options.cli + +driver.cxx + Driver for the example. It first instantiates the option class which parses + the command line. The driver then examines and prints the option values. + +To run the example you can try various command lines suggested in options.cli. -- cgit v1.1