加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
csv_parser-config.in 898 Bytes
一键复制 编辑 原始数据 按行查看 历史
#! /bin/sh
pkgincludedir="@prefix@/include/csv_parser"
pkglibdir="@prefix@/lib"
version=@PACKAGE_VERSION@
cxxflags="-I$pkgincludedir"
include="-I$pkgincludedir"
libs="-L$pkglibdir -lcsv_parser"
# Displays how csv_parser-config is used
usage () {
cat <<EOF
Usage: $0 [OPTIONS]
Available values for OPTIONS include the following :
--cflags [$cxxflags]
--cxxflags [$cxxflags]
--include [$include]
--libs [$libs]
--version [$version]
EOF
exit 1
}
if test $# -le 0; then usage; fi
while test $# -gt 0; do
case $1 in
--cflags) echo "$cxxflags" ;;
--cxxflags) echo "$cxxflags" ;;
--include) echo "$include" ;;
--libs) echo "$libs" ;;
--version) echo "$version" ;;
*) usage ;;
esac
shift
done
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化