build: add annotation for build.postconf_scripts

This commit is contained in:
Dylan Baker 2021-08-10 11:28:17 -07:00 committed by Daniel Mensinger
parent adddb9af21
commit e3b2d4ac8b
1 changed files with 2 additions and 2 deletions

View File

@ -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