diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2007-08-07 14:52:05 +0000 |
|---|---|---|
| committer | Stephen Sinclair <sinclair@music.mcgill.ca> | 2013-10-11 01:19:40 +0200 |
| commit | b0080e69d64ce69e21c8ce1b22b1bb7f888f1e58 (patch) | |
| tree | b51ebcd31a5280b4f4e9e45484f07d9b35723743 /rtaudio-config.in | |
| parent | 0fbcd74a04713a4725d2f346a493121b623d60ab (diff) | |
Check in of new version 4.0.0 distribution (GS).
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 |
