aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-04-10 03:38:04 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2017-04-10 03:38:04 +0530
commit878b0f1401dedce78a13faea1712572ce9854e7f (patch)
treefd96b97e88fd07f4ef5db46acace80a07cb3a072 /mesonbuild/environment.py
parent4c6f99a31adef341a5d71af28ce26452e4a5f182 (diff)
downloadmeson-878b0f1401dedce78a13faea1712572ce9854e7f.zip
meson-878b0f1401dedce78a13faea1712572ce9854e7f.tar.gz
meson-878b0f1401dedce78a13faea1712572ce9854e7f.tar.bz2
Fix shared module installation directory on Windows
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r--mesonbuild/environment.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index 7861612..93a41e8 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -741,6 +741,10 @@ class Environment:
"Install dir for the import library (library used for linking)"
return self.get_libdir()
+ def get_shared_module_dir(self):
+ "Install dir for shared modules that are loaded at runtime"
+ return self.get_libdir()
+
def get_shared_lib_dir(self):
"Install dir for the shared library"
if self.win_libdir_layout: