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.

37 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. options = {
  11. "zip_include_packages": ["*"],
  12. "zip_exclude_packages": ["PyQt5"],
  13. "replace_paths": [["*","./lib/"]],
  14. "build_exe": "./build-carla-control",
  15. "optimize": True,
  16. }
  17. exe_options = {
  18. "script": "./source/frontend/carla-control",
  19. "targetName": "carla-control",
  20. }
  21. setup(name = "CarlaControl",
  22. version = VERSION,
  23. description = "Carla Plugin Host",
  24. options = {"build_exe": options},
  25. executables = [Executable(**exe_options)])
  26. # ------------------------------------------------------------------------------------------------------------