dlang: fix #9250 invalid include flag for root directory

pull/9958/head
Tobias Pankrath 3 years ago committed by Dylan Baker
parent a57d6fa51b
commit 91ca3e2d58
  1. 2
      mesonbuild/compilers/d.py

@ -105,6 +105,8 @@ class DmdLikeCompilerMixin(CompilerMixinBase):
return ['-of=' + outputname]
def get_include_args(self, path: str, is_system: bool) -> T.List[str]:
if path == "":
path = "."
return ['-I=' + path]
def compute_parameters_with_absolute_paths(self, parameter_list: T.List[str],

Loading…
Cancel
Save