diff --git a/protos/core.proto b/protos/core.proto index 640300fae..eab87bd99 100644 --- a/protos/core.proto +++ b/protos/core.proto @@ -57,6 +57,12 @@ message CompileConfig { // Whether to emit compilation debug logs. bool verbose = 11; + // Supplementary key-value options for the compilation process, + // distinct from `project_config_override.vars` (which holds user vars). + // This can be used to pass environment-specific parameters or + // auxiliary configuration paths to the underlying execution engine. + map additional_options = 12; + reserved 2, 4, 5, 7, 9; }