aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-03-19 00:26:43 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2019-03-19 00:26:43 +0200
commit19eb0e762a81fa4cd411d9bee1ed0809f52f4716 (patch)
treec609d7e617069c1742c1c5fe4a4a9b2549d3beb2 /mesonbuild/build.py
parent95f5a72f625358544f7a37782e7c94266a2867d4 (diff)
downloadmeson-19eb0e762a81fa4cd411d9bee1ed0809f52f4716.zip
meson-19eb0e762a81fa4cd411d9bee1ed0809f52f4716.tar.gz
meson-19eb0e762a81fa4cd411d9bee1ed0809f52f4716.tar.bz2
Win fixes.
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index eb8e60c..4052beb 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -2101,6 +2101,9 @@ class CustomTarget(Target):
if suf == '.a' or suf == '.dll' or suf == '.lib' or suf == '.so':
return True
+ def get_link_deps_mapping(self, prefix, environment):
+ return {}
+
def get_link_dep_subdirs(self):
return OrderedSet()