Add packages and update others

This commit is contained in:
2026-02-11 14:04:58 +01:00
parent 6c90c821bf
commit edff40e77a
17 changed files with 685 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
#include <CLI/CLI.hpp>
#include <iostream>
int main(int argc, char **argv) {
CLI::App app("Test App");
CLI11_PARSE(app, argc, argv);
std::cout << app.help() << '\n';
return 0;
}