diffu/include/config.hpp

15 lines
308 B
C++
Raw Normal View History

2024-07-15 10:47:44 +00:00
#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;