mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-22 03:05:01 +00:00
32 lines
745 B
C++
32 lines
745 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#include <argparse/argparse.hpp>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
argparse::ArgumentParser program("main");
|
|
|
|
program.add_argument("--input_files")
|
|
.help("The list of input files")
|
|
.nargs(2);
|
|
|
|
try {
|
|
program.parse_args(
|
|
argc, argv); // Example: ./main --input_files config.yml System.xml
|
|
} catch (const std::exception &err) {
|
|
std::cerr << err.what() << std::endl;
|
|
std::cerr << program;
|
|
return 1;
|
|
}
|
|
|
|
auto files = program.get<std::vector<std::string>>(
|
|
"--input_files"); // {"config.yml", "System.xml"}
|
|
|
|
if (!files.empty()) {
|
|
std::cout << "Files: ";
|
|
for (auto &file : files) {
|
|
std::cout << file << " ";
|
|
}
|
|
std::cout << std::endl;
|
|
}
|
|
} |