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
469B

  1. diff --git a/setup.py b/setup.py
  2. index a80e6b2..3a7a2e7 100644
  3. --- a/setup.py
  4. +++ b/setup.py
  5. @@ -51,7 +51,7 @@ if sys.platform == "win32" and "MSYSTEM" in os.environ:
  6. CROSS_COMPILING = ("_PYTHON_HOST_PLATFORM" in os.environ)
  7. HOST_PLATFORM = get_platform()
  8. -MS_WINDOWS = (HOST_PLATFORM == 'win32')
  9. +MS_WINDOWS = (HOST_PLATFORM in ('mingw', 'win32'))
  10. CYGWIN = (HOST_PLATFORM == 'cygwin')
  11. MACOS = (HOST_PLATFORM == 'darwin')
  12. AIX = (HOST_PLATFORM.startswith('aix'))