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.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "zip_include_packages": ["*"],
  12. "zip_exclude_packages": ["PyQt5"],
  13. "replace_paths": [["*",".\\lib\\"]],
  14. "build_exe": ".\\Carla\\",
  15. "optimize": True,
  16. }
  17. exe_options = {
  18. "script": "..\\..\\source\\frontend\\carla",
  19. "icon": "..\\..\\resources\\ico\\carla.ico",
  20. "copyright": "Copyright (C) 2011-2020 Filipe Coelho",
  21. "base": "Win32GUI",
  22. "targetName": "Carla.exe",
  23. }
  24. setup(name = "Carla",
  25. version = VERSION,
  26. description = "Carla Plugin Host",
  27. options = {"build_exe": options},
  28. executables = [Executable(**exe_options)])
  29. # ------------------------------------------------------------------------------------------------------------