feat: provide cli options for library api prefix

This commit is contained in:
xinyangli 2024-07-16 14:33:45 +08:00
parent 7db988bdee
commit 607ed58ffa
Signed by: xin
SSH key fingerprint: SHA256:qZ/tzd8lYRtUFSrfBDBMcUqV4GHKxqeqRA3huItgvbk
6 changed files with 53 additions and 27 deletions

View file

@ -7,7 +7,10 @@
struct Config {
std::filesystem::path memory_file;
std::vector<std::filesystem::path> refs;
std::vector<std::string> refs_prefix;
std::filesystem::path dut;
std::string dut_prefix = "";
int cli_parse(int argc, char **argv);
};