CLI11 icon indicating copy to clipboard operation
CLI11 copied to clipboard

CLI11 is a command line parser for C++11 and beyond that provides a rich feature set with a simple and intuitive interface.

Results 141 CLI11 issues
Sort by recently updated
recently updated
newest added

When adding an option to an option_group and marking it as _required_ it is not read from environment (see code below). Version: CLI 2.4.1 ``` #include int main(int argc, char**...

I think a simple enough test would be, for a specific target: - remove `${CMAKE_SOURCE_DIR}/include` from `target_include_directories` - replace `#include "CLI/CLI.hpp"` with `#include "../include/CLI/CLI.hpp"` - just check that everything compiles…...

I am working on a command line application with a git-like CLI interface and am using your project for this. Unfortunately, the error message is not very helpful when an...

If the user specifies invalid arguments and `--help`, CLI11 produces only a help message and no error message. I would expect an error message and then the help. Just like...

Hi first of all, thank you for this good library! I'd like to be able to print the command run: ``` > ./MyBinary --input file.txt --num 4 --log debug Command...

Using version 2.4.2, I get a linker error when trying to build the following code: ```cpp #include int main(int argc, char **argv) { CLI::App app(""); return 0; } ``` Error:...

-fix a bug in the string escape code caught by initial round trip tests This is the next phase of the fuzzer. It runs a round trip and makes sure...

I'm trying to enable the use of configuration files at the subcommand level rather than using the global `CLI::App` instance. It doesn't seem to work as expected regardless of what...

This has been bounced around for a couple years now #474 and a few others have expressed desire to work with non-standard option names. We have been somewhat resistant to...

i want to write a helper tool to edit configure on my target box. suppose we have config-entries constants: ```text # `key1` accept only `value1` and `value2` key1: value1 value2...