1 Star 0 Fork 0

qingchunkafei/framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
configure.ac 831 Bytes
一键复制 编辑 原始数据 按行查看 历史
Cesar De Souza 提交于 2017-01-05 23:36 . Fixing make install
dnl Process this file with autoconf to produce a configure script.
AC_INIT([accord], m4_esyscmd([tr -d '\n' < Version.txt]))
AM_INIT_AUTOMAKE([tar-ustar foreign])
AC_PROG_INSTALL
dnl pkg-config
PKG_PROG_PKG_CONFIG([0.20])
AC_PATH_PROG(XBUILD, xbuild, no)
AC_PATH_PROG(MONO, mono, no)
if test "x$XBUILD" = "xno"; then
AC_MSG_ERROR([XBuild not found])
fi
if test "x$MONO" = "xno"; then
AC_MSG_ERROR([No mono runtime found])
fi
# Check Mono version
MONO_MINIMUM_VERSION=2.8
PKG_CHECK_MODULES(MONO, mono >= $MONO_MINIMUM_VERSION)
AC_SUBST(XBUILD)
AC_SUBST(MONO)
AC_CONFIG_FILES([
Makefile
accord.pc
])
AC_OUTPUT
cat <<EOF
${PACKAGE}-${VERSION}
Build Environment
Install Prefix: ${prefix}
XBuild Path: ${XBUILD}
Mono Runtime: ${MONO}
Installation Directory: ${prefix}/lib/${PACKAGE}/
EOF
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/myopenchina/framework.git
[email protected]:myopenchina/framework.git
myopenchina
framework
framework
development

搜索帮助