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.

app-gui.py 1.0KB

12345678910111213141516171819202122232425262728293031
  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. options = {
  11. "icon": ".\\resources\\ico\\carla.ico",
  12. "packages": [],
  13. "includes": ["re", "sip", "subprocess", "inspect"],
  14. "build_exe": ".\\data\\windows\\Carla\\",
  15. "optimize": True,
  16. "compressed": True
  17. }
  18. setup(name = "Carla",
  19. version = VERSION,
  20. description = "Carla Plugin Host",
  21. options = {"build_exe": options},
  22. executables = [Executable(".\\source\\Carla.pyw", base="Win32GUI")])
  23. # ------------------------------------------------------------------------------------------------------------