Audio plugin host https://kx.studio/carla
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.

36 lines
1.1KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # ------------------------------------------------------------------------------------------------------------
  4. # Imports (cx_Freeze)
  5. from cx_Freeze import setup, Executable
  6. # ------------------------------------------------------------------------------------------------------------
  7. # Imports (Custom Stuff)
  8. from carla_host import VERSION
  9. # ------------------------------------------------------------------------------------------------------------
  10. name = "bigmeter-ui"
  11. # ------------------------------------------------------------------------------------------------------------
  12. options = {
  13. "icon": ".\\resources\\ico\\carla.ico",
  14. "packages": [],
  15. "includes": ["re", "sip", "subprocess", "inspect"],
  16. "build_exe": ".\\data\\windows\\%s\\" % name,
  17. "optimize": False,
  18. "compressed": False
  19. }
  20. setup(name = name,
  21. version = VERSION,
  22. description = name,
  23. options = {"build_exe": options},
  24. executables = [Executable(".\\bin\\resources\\%s.pyw" % name, base="Win32GUI")])
  25. # ------------------------------------------------------------------------------------------------------------