aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/windows.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-03-17 21:09:48 +0200
committerNirbheek Chauhan <nirbheek@centricular.com>2018-04-15 13:32:38 +0530
commit998892ed2962fdabcb3ef882375501fd849d56f8 (patch)
tree8756aa0d62fe0531d232e684d37764cd3164c37d /mesonbuild/modules/windows.py
parent4256c0dae2e4793a486ef38eec4361639dbb2957 (diff)
downloadmeson-998892ed2962fdabcb3ef882375501fd849d56f8.zip
meson-998892ed2962fdabcb3ef882375501fd849d56f8.tar.gz
meson-998892ed2962fdabcb3ef882375501fd849d56f8.tar.bz2
Updated all modules to work with the new API.
Diffstat (limited to 'mesonbuild/modules/windows.py')
-rw-r--r--mesonbuild/modules/windows.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/modules/windows.py b/mesonbuild/modules/windows.py
index dc6e9d8..62cb9d1 100644
--- a/mesonbuild/modules/windows.py
+++ b/mesonbuild/modules/windows.py
@@ -104,5 +104,5 @@ class WindowsModule(ExtensionModule):
return ModuleReturnValue(res_targets, [res_targets])
-def initialize():
- return WindowsModule()
+def initialize(*args, **kwargs):
+ return WindowsModule(*args, **kwargs)