13 lines
244 B
Text
13 lines
244 B
Text
|
This is a lightweight C++ option parser library, supporting the standard GNU
|
||
|
style syntax for options.
|
||
|
|
||
|
Options can be given as:
|
||
|
* --long
|
||
|
* --long=argument
|
||
|
* --long argument
|
||
|
* -a
|
||
|
* -ab
|
||
|
* -abc argument
|
||
|
|
||
|
WWW: https://github.com/jarro2783/cxxopts
|