Shove kicad2step into pcbnew itself with a new cli

This commit is contained in:
Mark Roszko
2022-10-04 01:53:37 +00:00
parent c5f8587898
commit fb8a4c10f7
132 changed files with 15052 additions and 312 deletions
@@ -0,0 +1,19 @@
#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::runtime_error &err) {
std::cerr << err.what() << std::endl;
std::cerr << program;
std::exit(1);
}
std::cout << "Output written to " << program.get("-o") << "\n";
}