Files
SimControl/libs/CLI11/book/code/simplest.cpp
2023-08-09 15:23:10 +02:00

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;
}