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.

rtaudio-config.in 382B

12345678910111213141516171819
  1. #! /bin/sh
  2. if (test "x$#" != "x1") ; then
  3. echo "Usage: $0 [--libs | --cxxflags | --cppflags]"
  4. exit;
  5. fi
  6. LIBRARY="@LIBS@"
  7. CXXFLAGS="@CXXFLAGS@"
  8. CPPFLAGS="@CPPFLAGS@"
  9. if (test "x$1" == "x--libs") ; then
  10. echo "$LIBRARY"
  11. elif (test "x$1" == "x--cxxflags") ; then
  12. echo "$CXXFLAGS"
  13. elif (test "x$1" == "x--cppflags") ; then
  14. echo "$CPPFLAGS"
  15. else
  16. echo "Unknown option: $1"
  17. fi