diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-06-02 17:59:29 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-07 12:57:39 +0000 |
commit | e9462ce2064f5ec38a628e6e310d459d42f58d9c (patch) | |
tree | ac0e064b9751ea6c780324d8a8c7ae741df64677 /mesonbuild/build.py | |
parent | 1f5c6d62bf1e88ae24dce79b5d7a586e8f783371 (diff) | |
download | meson-e9462ce2064f5ec38a628e6e310d459d42f58d9c.zip meson-e9462ce2064f5ec38a628e6e310d459d42f58d9c.tar.gz meson-e9462ce2064f5ec38a628e6e310d459d42f58d9c.tar.bz2 |
Install shared_module implibs
On Windows, if we are going to link with a shared module, we need the
implib.
Use case: The Xorg server builds some X protocol extensions as modules. The
implibs for these modules need to be shipped as part of the SDK, to enable
building of 3rd party extensions which reference symbols in (and hence on
Windows, need to be linked with) these modules.
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 36e2e3c..331b552 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1625,7 +1625,6 @@ class SharedModule(SharedLibrary): if 'soversion' in kwargs: raise MesonException('Shared modules must not specify the soversion kwarg.') super().__init__(name, subdir, subproject, is_cross, sources, objects, environment, kwargs) - self.import_filename = None class CustomTarget(Target): known_kwargs = set([ |