diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2018-11-28 15:15:54 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-06 12:19:28 +0100 |
commit | 71d17b44e45c68b8d0b5189a8ebe8412ab99c622 (patch) | |
tree | 9d04aa8f84478659d162afb2fa2a63bbca01c23c /mesonbuild/compilers/cs.py | |
parent | a0d478da39dbab0ce265f5b4997ccf29baa87242 (diff) | |
download | meson-71d17b44e45c68b8d0b5189a8ebe8412ab99c622.zip meson-71d17b44e45c68b8d0b5189a8ebe8412ab99c622.tar.gz meson-71d17b44e45c68b8d0b5189a8ebe8412ab99c622.tar.bz2 |
Fixed list_target_files and list_targets
Diffstat (limited to 'mesonbuild/compilers/cs.py')
-rw-r--r-- | mesonbuild/compilers/cs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cs.py b/mesonbuild/compilers/cs.py index a6c74d2..95b1603 100644 --- a/mesonbuild/compilers/cs.py +++ b/mesonbuild/compilers/cs.py @@ -82,7 +82,7 @@ class CsCompiler(Compiler): def get_std_exe_link_args(self): return [] - def get_include_args(self, path): + def get_include_args(self, path, is_system): return [] def get_pic_args(self): |