mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-22 03:05:01 +00:00
22 lines
487 B
C++
22 lines
487 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#include <argparse/argparse.hpp>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
argparse::ArgumentParser program("test");
|
|
|
|
program.add_argument("-o", "--output")
|
|
.required()
|
|
.help("specify the output file.");
|
|
|
|
try {
|
|
program.parse_args(argc, argv);
|
|
} catch (const std::exception &err) {
|
|
std::cerr << err.what() << std::endl;
|
|
std::cerr << program;
|
|
return 1;
|
|
}
|
|
|
|
std::cout << "Output written to " << program.get("-o") << "\n";
|
|
}
|