build: add annotation for build.postconf_scripts

pull/9143/head
Dylan Baker 3 years ago committed by Daniel Mensinger
parent adddb9af21
commit e3b2d4ac8b
  1. 4
      mesonbuild/build.py

@ -47,7 +47,7 @@ if T.TYPE_CHECKING:
from .interpreter.interpreter import Test, SourceOutputs, Interpreter
from .mesonlib import FileMode, FileOrString
from .modules import ModuleState
from .backend.backends import Backend
from .backend.backends import Backend, ExecutableSerialisation
pch_kwargs = {'c_pch', 'cpp_pch'}
@ -228,7 +228,7 @@ class Build:
self.subprojects = {}
self.subproject_dir = ''
self.install_scripts = []
self.postconf_scripts = []
self.postconf_scripts: T.List['ExecutableSerialisation'] = []
self.dist_scripts = []
self.install_dirs: T.List[InstallDir] = []
self.dep_manifest_name = None

Loading…
Cancel
Save