summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/build.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index 42f1dcc9c..3107673a7 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -721,6 +721,9 @@ class BuildTarget(Target):
('cpp', 'cuda'),
])
+ # This is used by the backend to cache complex computation.
+ cached_generated_headers: T.Optional[T.List[FileOrString]]
+
def __init__(
self,
name: str,