Browse Source

Don't build&install bridges and carla-control (not ready yet)

tags/1.9.4
falkTX 12 years ago
parent
commit
e3f431b920
2 changed files with 11 additions and 5 deletions
  1. +6
    -5
      Makefile
  2. +5
    -0
      source/carla_shared.py

+ 6
- 5
Makefile View File

@@ -28,7 +28,7 @@ all: CPP RES UI WIDGETS
# ------------------------------------------------------------------------------------------------------------------------------------- # -------------------------------------------------------------------------------------------------------------------------------------
# C++ code # C++ code


CPP: backend bridges discovery
CPP: backend discovery


backend: backend:
$(MAKE) -C source/backend $(MAKE) -C source/backend
@@ -174,18 +174,19 @@ install:
# Install binaries # Install binaries
install -m 755 \ install -m 755 \
source/backend/*.so \ source/backend/*.so \
source/bridges/carla-bridge-* \
source/discovery/carla-discovery-* \ source/discovery/carla-discovery-* \
$(DESTDIR)$(PREFIX)/lib/carla/ $(DESTDIR)$(PREFIX)/lib/carla/


# source/bridges/carla-bridge-*

# Install python code # Install python code
install -m 755 source/*.py $(DESTDIR)$(PREFIX)/share/carla/ install -m 755 source/*.py $(DESTDIR)$(PREFIX)/share/carla/


# Adjust PREFIX value in script files # Adjust PREFIX value in script files
sed -i "s/X-PREFIX-X/$(SED_PREFIX)/" \ sed -i "s/X-PREFIX-X/$(SED_PREFIX)/" \
$(DESTDIR)$(PREFIX)/bin/carla \
$(DESTDIR)$(PREFIX)/bin/carla-control \
$(DESTDIR)$(PREFIX)/bin/carla-single
$(DESTDIR)$(PREFIX)/bin/carla
# $(DESTDIR)$(PREFIX)/bin/carla-control \
# $(DESTDIR)$(PREFIX)/bin/carla-single


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




+ 5
- 0
source/carla_shared.py View File

@@ -2164,6 +2164,11 @@ class PluginWidget(QFrame):
self.fColorTop = QColor(60, 60, 60) self.fColorTop = QColor(60, 60, 60)
self.fColorBottom = QColor(47, 47, 47) self.fColorBottom = QColor(47, 47, 47)


self.setStyleSheet("""
QLabel#label_name {
color: white;
}""")

# Colorify # Colorify
#if self.m_pluginInfo['category'] == PLUGIN_CATEGORY_SYNTH: #if self.m_pluginInfo['category'] == PLUGIN_CATEGORY_SYNTH:
#self.setWidgetColor(PALETTE_COLOR_WHITE) #self.setWidgetColor(PALETTE_COLOR_WHITE)


Loading…
Cancel
Save