Browse Source

Misc

tags/1.9.4
falkTX 10 years ago
parent
commit
28f2530e05
2 changed files with 30 additions and 0 deletions
  1. +4
    -0
      .gitignore
  2. +26
    -0
      data/macos/bundle.py

+ 4
- 0
.gitignore View File

@@ -38,12 +38,14 @@ ui_*.py

# PyQt widgets
source/canvaspreviewframe.py
source/carla_config.py
source/digitalpeakmeter.py
source/ledbutton.py
source/paramspinbox.py
source/pixmapbutton.py
source/pixmapdial.py
source/pixmapkeyboard.py
source/qgraphicsembedscene.py

# Binaries
carla-bridge-qtcreator
@@ -140,6 +142,8 @@ source/includes/vst/
source/includes/vst3/

data/macos/*.gz
data/macos/*.tgz
data/macos/*.*/
data/macos/Carla/

data/windows/python/

+ 26
- 0
data/macos/bundle.py View File

@@ -0,0 +1,26 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# ------------------------------------------------------------------------------------------------------------
# Imports (cx_Freeze)

from cx_Freeze import setup, Executable

# ------------------------------------------------------------------------------------------------------------
# Imports (Custom Stuff)

# from carla_host import *

# ------------------------------------------------------------------------------------------------------------

options = {
"packages": ["re", "sip", "subprocess", "inspect"]
}

setup(name = "Carla",
version = "1.9.3",
description = "Carla Plugin Host",
options = {"bdist_exe": options},
executables = [Executable("./source/carla.pyw")])

# ------------------------------------------------------------------------------------------------------------

Loading…
Cancel
Save