vsa / vn-stock-analysis-app /ta-lib /ta-lib-config.in
danghungithp's picture
Upload 1398 files
bec48e1 verified
raw
history blame contribute delete
414 Bytes
#!/bin/sh
usage="\
Usage: ta-lib-config [--version] [--libs] [--cflags]"
if test $# -eq 0; then
echo "${usage}" 1>&2
exit 1
fi
while test $# -gt 0; do
case $1 in
--version)
echo @VERSION@
;;
--cflags)
echo -I@includedir@/ta-lib @DEFS@
;;
--libs)
echo -L@libdir@ @LIBS@
;;
*)
echo "${usage}" 1>&2
exit 1
;;
esac
shift
done