Collection of tools useful for audio production
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.

20 lines
669B

  1. # Cadence Session Startup Injection
  2. # Set plugin paths and start JACK (or not) according to user settings
  3. INSTALL_PREFIX="X-PREFIX-X"
  4. if [ -f $INSTALL_PREFIX/bin/cadence-session-start ]; then
  5. export CADENCE_AUTO_STARTED="true"
  6. export LADSPA_PATH="`$INSTALL_PREFIX/bin/cadence-session-start --printLADSPA_PATH`"
  7. export DSSI_PATH="`$INSTALL_PREFIX/bin/cadence-session-start --printDSSI_PATH`"
  8. export LV2_PATH="`$INSTALL_PREFIX/bin/cadence-session-start --printLV2_PATH`"
  9. export VST_PATH="`$INSTALL_PREFIX/bin/cadence-session-start --printVST_PATH`"
  10. STARTUP="$INSTALL_PREFIX/bin/cadence-session-start --system-start-by-x11-startup $STARTUP"
  11. fi
  12. unset INSTALL_PREFIX