aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-04-10 12:43:04 +0300
committerGitHub <noreply@github.com>2017-04-10 12:43:04 +0300
commit7d5e4012fe7d5984d1039d8647a7cb80fe484e9e (patch)
treec45078475716cb93716ccf32979a2600eaaffee0 /mesonbuild/environment.py
parent27e2c23efc3b3205f97ce44686341f28382b7d72 (diff)
parentfd030a1efd5e8da01cb3e796089d729505a20039 (diff)
downloadmeson-7d5e4012fe7d5984d1039d8647a7cb80fe484e9e.zip
meson-7d5e4012fe7d5984d1039d8647a7cb80fe484e9e.tar.gz
meson-7d5e4012fe7d5984d1039d8647a7cb80fe484e9e.tar.bz2
Merge pull request #1598 from centricular/fix-module-instdir
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: