diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-22 11:15:01 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-10-01 15:05:00 -0700 |
commit | 413f4d87e96905dcfcd082af9b59b9396d19f4b8 (patch) | |
tree | 42a499fbc6a71239973339a1b1b46e18921d005b /mesonbuild/compilers/compilers.py | |
parent | e7f0890cb9a26e2e64e79739c80fddb609d484cf (diff) | |
download | meson-413f4d87e96905dcfcd082af9b59b9396d19f4b8.zip meson-413f4d87e96905dcfcd082af9b59b9396d19f4b8.tar.gz meson-413f4d87e96905dcfcd082af9b59b9396d19f4b8.tar.bz2 |
compilers/cs: Add type annotations
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index a66ecdc..6f15e48 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1065,6 +1065,14 @@ class Compiler(metaclass=abc.ABCMeta): def get_dependency_gen_args(self, outtarget: str, outfile: str) -> T.List[str]: return [] + def get_std_exe_link_args(self) -> T.List[str]: + # TODO: is this a linker property? + return [] + + def get_include_args(self, path: str, is_system: bool) -> T.List[str]: + return [] + + def get_args_from_envvars(lang: str, for_machine: MachineChoice, |