build: add annotation for build.postconf_scripts
This commit is contained in:
parent
adddb9af21
commit
e3b2d4ac8b
|
@ -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…
Reference in New Issue