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.

carla-libdir 229B

1234567
  1. #!/bin/bash
  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