diff options
| author | Stephen Sinclair <sinclair@music.mcgill.ca> | 2013-10-11 01:56:29 +0200 |
|---|---|---|
| committer | Stephen Sinclair <sinclair@music.mcgill.ca> | 2013-10-11 01:56:29 +0200 |
| commit | acd5fefddbc6629095bcfae56edb87af8d40e4db (patch) | |
| tree | d09a573bce0a46e95c2da8c4336ecbfb6e6f67fa /rtaudio-config.in | |
| parent | 504ebe4ba69765df5ca0da115690c29e52a44c6d (diff) | |
| parent | 1022a7876a6ef1980ad5518340df177814783c7f (diff) | |
Merge 4.0.5 into releases
Diffstat (limited to 'rtaudio-config.in')
| -rw-r--r-- | rtaudio-config.in | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/rtaudio-config.in b/rtaudio-config.in index c689a98..2422b60 100644 --- a/rtaudio-config.in +++ b/rtaudio-config.in @@ -1,16 +1,19 @@ #! /bin/sh if (test "x$#" != "x1") ; then - echo "Usage: $0 [--libs | --cxxflags]" + echo "Usage: $0 [--libs | --cxxflags | --cppflags]" exit; fi -LIBRARY="@LIBS@ @frameworks@" -CFLAGS="@audio_apis@" +LIBRARY="@LIBS@" +CXXFLAGS="@CXXFLAGS@" +CPPFLAGS="@CPPFLAGS@" if (test "x$1" == "x--libs") ; then echo "$LIBRARY" -elif (test "x$1" == "x--CFLAGS") ; then - echo "$CFLAGS" +elif (test "x$1" == "x--cxxflags") ; then + echo "$CXXFLAGS" +elif (test "x$1" == "x--cppflags") ; then + echo "$CPPFLAGS" else echo "Unknown option: $1" fi |
