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.

8 lines
227B

  1. #!/bin/sh
  2. # small script that only prints carla's libdir.
  3. # can be used to detect if carla is installed, and where to find its libcarla_standalone2.so file
  4. CARLA_LIBDIR="X-LIBDIR-X"
  5. printf -- "%s" ${CARLA_LIBDIR}/carla
  6. exit 0