Typed command-line parsing with GNU-style flags, options, and positional parameters.
- C++23 compiler and standard library
- Exception support
#include <iostream>
#include <string>
#include <kaycxx/cli.hpp>
using namespace kaycxx::cli;
int main(int argc, char* argv[]) {
auto app = command("example", { .version = "1.0.0" });
auto help = app.flag("help", 'h', "Show help").action();
auto version = app.flag("version", 'V', "Show version information").action();
auto verbose = app.flag("verbose", 'v', "Enable verbose output");
auto repetitions = app.option<int>("count", 'c', "COUNT", "Number of repetitions").default_value(1);
auto input = app.parameter<std::string>("INPUT", "Input file name");
try {
auto arguments = app.parse(argc, argv);
if (arguments.get(help)) {
return app.print_help();
}
if (arguments.get(version)) {
return app.print_version();
}
arguments.validate();
for (auto remaining = arguments.get(repetitions); remaining > 0; --remaining) {
if (arguments.get(verbose)) {
std::cout << "Input: ";
}
std::cout << arguments.get(input) << '\n';
}
return 0;
} catch (parse_error const& error) {
std::cerr << app.name() << ": " << error.what() << '\n';
return 1;
}
}CMake users consume the installed package with:
find_package(kaycxx-cli 0.0.5 CONFIG REQUIRED)
target_link_libraries(my-target PRIVATE kaycxx::cli)Non-CMake users can use pkg-config:
c++ $(pkg-config --cflags kaycxx-cli) -c main.cpp
c++ main.o $(pkg-config --libs kaycxx-cli)- Defining a Command explains command metadata, registered arguments, handles, and help/version dispatch.
- Flags and Options explains boolean flags, typed options, short aliases, defaults, actions, and value access.
- Positional Parameters explains single and repeated parameters, defaults, value counts, and argument allocation.
- Value Conversion explains built-in conversions and how custom types provide an ADL-discovered
from_stringfunction. - Parsing and Errors explains parsing, lazy positional validation, the
--separator, andparse_errorhandling.
cmake --preset release
cmake --build --preset releaseA shared library is built by default. For a static build:
cmake --preset release -D BUILD_SHARED_LIBS=OFF
cmake --build --preset releasecmake --install build/release --prefix /tmp/rootIf no prefix is specified, CMake installs to /usr/local by default on Unix systems.
Run all tests:
cmake --preset debug
cmake --build --preset debug --target testGenerate API documentation with Doxygen:
cmake --build --preset debug --target apidocThe generated HTML documentation is written to build/debug/apidoc/html/index.html.