Browse Source

Add small descriptions on Makefile.mk options

tags/v0.9.0
falkTX 12 years ago
parent
commit
64ee13222f
2 changed files with 11 additions and 5 deletions
  1. +10
    -5
      c++/Makefile.mk
  2. +1
    -0
      doc/Carla-TODO

+ 10
- 5
c++/Makefile.mk View File

@@ -38,14 +38,19 @@ BUILD_CXX_FLAGS += -DQT_NO_DEBUG -DQT_NO_DEBUG_STREAM -DQT_NO_DEBUG_OUTPUT
endif

# --------------------------------------------------------------
# Modify to enable/disable specific features

# Comment this line to not use vestige header
BUILD_CXX_FLAGS += -DVESTIGE_HEADER
# Support for LADSPA, DSSI, LV2 and VST plugins
CARLA_PLUGIN_SUPPORT = true

# Modify to enable/disable specific features
CARLA_PLUGIN_SUPPORT = true
# Support for GIG, SF2 and SFZ sample banks (through fluidsynth and linuxsampler)
CARLA_SAMPLERS_SUPPORT = true
CARLA_RTAUDIO_SUPPORT = true

# Support for Native Audio (ALSA and/or PulseAudio in Linux)
CARLA_RTAUDIO_SUPPORT = true

# Comment this line to not use vestige header
BUILD_CXX_FLAGS += -DVESTIGE_HEADER

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



+ 1
- 0
doc/Carla-TODO View File

@@ -2,6 +2,7 @@

CODE CLEANUP:
- Create PluginGUI class in C++ code, remove python one (need to handle parent somehow)
- Smarter audio/midi port names (count == 1: "audio-in" else: "audio-in-x")

GENERAL:
- add direct program access on ui-dialogs (needed for standalone bridges), maybe add extra buttons too (reset plugin, fix ui size)


Loading…
Cancel
Save