diff options
| author | gingerBill <bill@gingerbill.org> | 2024-07-09 14:16:56 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-07-09 14:16:56 +0100 |
| commit | 886ee66e7fcabbd09c20fd55d98051e3854dfd76 (patch) | |
| tree | 42009ae0ef71a2c755eb375416143a77d4240c77 /src/build_settings.cpp | |
| parent | 68b70a21831b3128828357e8af366a377283fa80 (diff) | |
Cache files, env, and args
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index be896f6fa..28ca0f088 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -329,7 +329,12 @@ enum SanitizerFlags : u32 { struct BuildCacheData { u64 crc; String cache_dir; - String manifest_path; + + // manifests + String files_path; + String args_path; + String env_path; + bool copy_already_done; }; |