changes to the build system

This commit is contained in:
Ryzerth
2020-12-22 14:50:26 +01:00
parent e90b6656c3
commit bd545feb2c
57 changed files with 1456 additions and 275 deletions

View File

@@ -1,13 +1,14 @@
#pragma once
#include <string>
#include <new_module.h>
namespace options {
struct CMDLineOptions {
std::string root;
bool help;
};
CMDLineOptions opts;
SDRPP_EXPORT CMDLineOptions opts;
void parse(char** argv, int argc);
}
void loadDefaults();
bool parse(int argc, char *argv[]);
}