15 lines
308 B
C++
15 lines
308 B
C++
|
#include <CLI/App.hpp>
|
||
|
#include <CLI/CLI.hpp>
|
||
|
#include <CLI/Validators.hpp>
|
||
|
#include <filesystem>
|
||
|
#include <vector>
|
||
|
|
||
|
struct Config {
|
||
|
std::filesystem::path memory_file;
|
||
|
std::vector<std::filesystem::path> refs;
|
||
|
std::filesystem::path dut;
|
||
|
int cli_parse(int argc, char **argv);
|
||
|
};
|
||
|
|
||
|
extern Config config;
|