diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-10-14 22:19:26 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-10-14 22:19:26 +0200 |
commit | c0eacf8e85003844b95e71b9004fa464d4586a38 (patch) | |
tree | a407dc8ec3830cb01faf3d5153c8741f9b19e1c1 /src/configure.h | |
parent | 87aad8c76eb2371720c9aceef7516ecb0859ecdf (diff) |
Use dependency system and build system for compiling ctor on config changes.
Diffstat (limited to 'src/configure.h')
-rw-r--r-- | src/configure.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/configure.h b/src/configure.h index de1b7e0..a350820 100644 --- a/src/configure.h +++ b/src/configure.h @@ -7,10 +7,12 @@ #include <string> #include <map> +struct Settings; + extern std::filesystem::path configurationFile;; extern std::filesystem::path configHeaderFile; -int configure(int argc, char* argv[]); +int configure(const Settings& settings, int argc, char* argv[]); bool hasConfiguration(const std::string& key); const std::string& getConfiguration(const std::string& key, |