diff options
| author | dacctal <dacctalyt@gmail.com> | 2026-04-17 08:16:21 +0000 |
|---|---|---|
| committer | dacctal <dacctalyt@gmail.com> | 2026-04-17 08:16:21 +0000 |
| commit | c421fe8fb87e949bae1860f0d501cf8e89ce0f18 (patch) | |
| tree | 7b2ec26ec674bf864feb80a38aa9b33c7401e479 /include | |
| parent | 574708a5f97907c4b4e67788d38f89fac0981b70 (diff) | |
started manifest template
Diffstat (limited to 'include')
| -rw-r--r-- | include/set_install_directories.hh | 6 | ||||
| -rw-r--r-- | include/vars.hh | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/include/set_install_directories.hh b/include/set_install_directories.hh new file mode 100644 index 0000000..2de9dd1 --- /dev/null +++ b/include/set_install_directories.hh @@ -0,0 +1,6 @@ +#ifndef SET_INSTALL_DIRECTORIES +#define SET_INSTALL_DIRECTORIES + +void set_install_directories(); + +#endif diff --git a/include/vars.hh b/include/vars.hh index 448b6df..71045ee 100644 --- a/include/vars.hh +++ b/include/vars.hh @@ -6,9 +6,11 @@ #include <map> extern std::map<std::string, std::string> repos; +extern std::map<std::string, std::string> install_directories; extern bool is_symlink_install; extern bool is_verbose; +extern bool config_exists; struct Pkg { std::string url; @@ -29,7 +31,6 @@ extern const std::string bin; extern const std::string lib; extern const std::string include; extern const std::string pkgblds; - extern const std::string all_dirs[5]; // version |
