docopt.cpp icon indicating copy to clipboard operation
docopt.cpp copied to clipboard

C++11 port of docopt

Results 72 docopt.cpp issues
Sort by recently updated
recently updated
newest added

```BUILD_SHARED_LIBS``` is defined in cmake docs (https://cmake.org/cmake/help/v3.0/variable/BUILD_SHARED_LIBS.html) to control this. The reason this is useful is, for example, when FreeBSD (or any other system) has a policy against installing static...

needs-patch
simple-fix

On the CI of my code I'm getting (on Linux only) the following linker error with the [docopt.cpp feedstock](https://github.com/conda-forge/docopt.cpp-feedstock): ``` undefined reference to `docopt::docopt(std::string const&, std::vector const&, bool, std::string const&,...

The last (and only) release was in 2016. Any new official release possible ? kind

I have the following: ``` static const char static const char USAGE[] =[] = R"(Usage: my_program [-ho ] [--output=] [--remove_comments] [--no_separators] [--no_timestamp] [--silent] -h --help show this -o --output= specify...

This is a popular convention now being followed by several CLI tools that pick up default values (like tokens or passwords) from environment variables if not specified at the command...

A uniform interface to access the libraries/headers without having to manually type in the include directory or the library name would be nice. Several projects use `${project_NAME}_LIBRARIES` variable for all...

Could we have a single header version of DOCOPT without any external dependencies (other than STL), please?

Hi, I tried to create a Qt project (Qt 5.8 + QtCreator 4.2.1) with just docopt and the main class, and it seems that for some reason Qmake does not...

Although `asLong()` returns a valid value for an integral value passed as an argument `isLong()` at the same time returns `false`. It looks like such behaviour is connected with the...

The `*.dll` on Windows is currently being installed in `%PREFIX%\Library\lib` which should however be `%PREFIX%\Library\bin`. The fix is to set ```cmake install(TARGETS ... LIBRARY DESTINATION "lib" ARCHIVE DESTINATION "lib" RUNTIME...