Cross-Platform build scripts for audio plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
470B

  1. diff --git a/configure.py b/configure.py
  2. index 6cea574..b7e4ba3 100644
  3. --- a/configure.py
  4. +++ b/configure.py
  5. @@ -464,7 +464,7 @@ def create_makefiles(macros):
  6. all_installs.extend(module_installs)
  7. if not opts.no_module:
  8. - if sys.platform == 'win32':
  9. + if sys.platform == 'win32' or opts.platform == 'win32-g++':
  10. mod = 'sip.lib' if opts.static else 'sip.pyd'
  11. else:
  12. mod = 'libsip.a' if opts.static else 'sip.so'