├── .appveyor.yml ├── .clang-format ├── .clang-tidy ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── premake5.lua ├── src └── Cmdline.h └── test ├── Example.cc ├── Example_subcommands.cc ├── Test.cc ├── doctest.cc └── doctest.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/README.md -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/premake5.lua -------------------------------------------------------------------------------- /src/Cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/src/Cmdline.h -------------------------------------------------------------------------------- /test/Example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/test/Example.cc -------------------------------------------------------------------------------- /test/Example_subcommands.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/test/Example_subcommands.cc -------------------------------------------------------------------------------- /test/Test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/test/Test.cc -------------------------------------------------------------------------------- /test/doctest.cc: -------------------------------------------------------------------------------- 1 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 1 2 | #include "doctest.h" 3 | -------------------------------------------------------------------------------- /test/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine2/HEAD/test/doctest.h --------------------------------------------------------------------------------