summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2016-06-24 08:50:48 -0400
committerGary Scavone <gary@music.mcgill.ca>2016-06-24 08:50:48 -0400
commit85c90a520ef4df1499cfe731eb3eb643b2512cf3 (patch)
tree386ef707dc2661afb04438c482880e42e79c2897
parentf4c674cf4a4c7487121977179e1ce623b8231ca6 (diff)
Deleting rtaudio-config in favor of rtaudio.pc
-rw-r--r--rtaudio-config.in19
1 files changed, 0 insertions, 19 deletions
diff --git a/rtaudio-config.in b/rtaudio-config.in
deleted file mode 100644
index 5f83d51..0000000
--- a/rtaudio-config.in
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/sh
-if (test "x$#" != "x1") ; then
- echo "Usage: $0 [--libs | --cxxflags | --cppflags]"
- exit;
-fi
-
-LIBRARY="@LIBS@"
-CXXFLAGS="@CXXFLAGS@"
-CPPFLAGS="@CPPFLAGS@"
-
-if (test "x$1" = "x--libs") ; then
- echo "$LIBRARY -lrtaudio"
-elif (test "x$1" = "x--cxxflags") ; then
- echo "$CXXFLAGS"
-elif (test "x$1" = "x--cppflags") ; then
- echo "$CPPFLAGS"
-else
- echo "Unknown option: $1"
-fi