mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 12:13:52 +00:00
12 lines
163 B
C++
12 lines
163 B
C++
#include "CLI/CLI.hpp"
|
|
|
|
int main(int argc, char **argv) {
|
|
CLI::App app;
|
|
|
|
// Add new options/flags here
|
|
|
|
CLI11_PARSE(app, argc, argv);
|
|
|
|
return 0;
|
|
}
|