⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smr_cgal_makefile.m4

📁 KNN algorithm, and related
💻 M4
字号:
dnl @synopsis smr_CGAL_MAKEFILEdnldnl This macro adds a "--with-cgal-makefile" option to the configure script,dnl in order to specify where the CGAL skeletal makefile is located.dnldnl @version $Id: smr_CGAL_MAKEFILE.m4,v 1.2 2002/05/07 01:13:25 stever Exp $dnl @author Steve M. Robbins <smr@debian.org>AC_DEFUN([smr_CGAL_MAKEFILE],[    AC_ARG_WITH(cgal-makefile,[  --with-cgal-makefile=PATHNAME                           specify location of CGAL makefile],[    if test ! -r "$withval"; then	AC_MSG_ERROR([Cannot read CGAL makefile "$withval"])    else	CGAL_MAKEFILE=$withval    fi])if test -z "$CGAL_MAKEFILE"; then    for cm in cgal_makefile ../cgal_makefile ../../cgal_makefile none; do	test -r $cm && break    done    if test $cm = none; then	AC_MSG_ERROR([Cannot find a CGAL makefile fragment to include.Use --with-cgal-makefile or create a symbolic link named \"cgal_makefile\"in the top of the source tree.])    fi    CGAL_MAKEFILE='$(top_builddir)/'$cmfiAC_SUBST(CGAL_MAKEFILE)])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -