3 Star 4 Fork 2

Gitee 极速下载/QPanda-2-0

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/OriginQ/QPanda-2.0.git
克隆/下载
qpanda-config.in 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
shenzhi-git 提交于 2022-05-03 15:35 +08:00 . update 2.1.10
#!/bin/sh
prefix=@prefix@
exec_prefix=@exec_prefix@
exec_prefix_set=no
libdir=@libdir@
usage="\
Usage: $0 [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]"
if test $# -eq 0; then
echo "${usage}" 1>&2
exit 1
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case $1 in
--prefix=*)
prefix=$optarg
if test $exec_prefix_set = no ; then
exec_prefix=$optarg
fi
;;
--prefix)
echo $prefix
;;
--exec-prefix=*)
exec_prefix=$optarg
exec_prefix_set=yes
;;
--exec-prefix)
echo $exec_prefix
;;
--version)
echo @QPANDA_VERSION@
;;
--cflags)
echo -I@includedir@/qpanda2 -I@includedir@/qpanda2/ThirdParty -I@includedir@/qpanda2/Extensions @QPANDA_CFLAGS@
;;
--libs)
echo -L@libdir@ @QPANDA_RLD_FLAGS@ @QPANDA_LIBS@
;;
*)
echo "${usage}" 1>&2
exit 1
;;
esac
shift
done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/QPanda-2-0.git
git@gitee.com:mirrors/QPanda-2-0.git
mirrors
QPanda-2-0
QPanda-2-0
master

搜索帮助