diff options
Diffstat (limited to 'rtaudio-config.in')
| -rw-r--r-- | rtaudio-config.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/rtaudio-config.in b/rtaudio-config.in new file mode 100644 index 0000000..f950f4e --- /dev/null +++ b/rtaudio-config.in @@ -0,0 +1,16 @@ +#! /bin/sh +if (test "x$#" != "x1") ; then + echo "Usage: $0 [--libs | --cxxflags]" + exit; +fi + +LIBRARY="@LIBS@ @frameworks@" +CFLAGS="@audio_apis@" + +if (test "x$1" == "x--libs") ; then + echo "$LIBRARY" +elif (test "x$1" == "x--cflags") ; then + echo "$CFLAGS" +else + echo "Unknown option: $1" +fi |
