configure.in
来自「在Linux C++中解析XML文件 能够创建文件」· IN 代码 · 共 39 行
IN
39 行
# -*- Autoconf -*-# Process this file with autoconf to produce a configure script.AC_PREREQ(2.59)AC_INIT(xmlparser, 1.0, yan.liu@wizitsoft.com)AC_CONFIG_SRCDIR([test/TestMain.cpp])# AC_CONFIG_HEADER([config.h])AM_INIT_AUTOMAKE(xmlparser,1.0)# Checks for programs.AC_PROG_CXXAC_PROG_CCAC_PROG_RANLIB# Checks for libraries.# FIXME: Replace `main' with a function in `-lcppunit':AC_CHECK_LIB([cppunit], [main])# FIXME: Replace `main' with a function in `-llog4cpp':AC_CHECK_LIB([log4cpp], [main])# FIXME: Replace `main' with a function in `-lpthread':AC_CHECK_LIB([pthread], [main])# FIXME: Replace `main' with a function in `-lxml2':AC_CHECK_LIB([xml2], [main])# Checks for header files.# Checks for typedefs, structures, and compiler characteristics.AC_HEADER_STDBOOLAC_C_CONST# Checks for library functions.AC_FUNC_ERROR_AT_LINE# AC_CONFIG_FILES([])AC_OUTPUT([Makefile test/Makefile xml/Makefile ])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?