mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-22 03:55:00 +00:00
26 lines
663 B
C++
26 lines
663 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#include <argparse/argparse.hpp>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
argparse::ArgumentParser program("compiler");
|
|
|
|
program.add_argument("files").remaining();
|
|
|
|
try {
|
|
program.parse_args(argc, argv);
|
|
} catch (const std::exception &err) {
|
|
std::cerr << err.what() << std::endl;
|
|
std::cerr << program;
|
|
return 1;
|
|
}
|
|
|
|
try {
|
|
auto files = program.get<std::vector<std::string>>("files");
|
|
std::cout << files.size() << " files provided" << std::endl;
|
|
for (auto &file : files)
|
|
std::cout << file << std::endl;
|
|
} catch (std::logic_error &e) {
|
|
std::cout << "No files provided" << std::endl;
|
|
}
|
|
} |