mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 09:39:42 +02:00
17 lines
295 B
Bash
17 lines
295 B
Bash
#! /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
|