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.

14 lines
488B

  1. #!/bin/bash
  2. JUCE_MODULES_DIR="/home/falktx/Personal/FOSS/GIT/distrho/libs/juce-2.0/source/modules"
  3. CARLA_MODULES_DIR="/home/falktx/Personal/FOSS/GIT/Carla/source/modules"
  4. MODULES=("juce_audio_basics juce_audio_devices juce_audio_formats juce_audio_processors juce_core juce_data_structures juce_events juce_graphics juce_gui_basics")
  5. for M in $MODULES; do
  6. echo $M;
  7. cp -r -v $JUCE_MODULES_DIR/$M/* $CARLA_MODULES_DIR/$M/
  8. done
  9. find $CARLA_MODULES_DIR -name juce_module_info -delete