COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r310 r296  
    8282AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
    8383
     84dnl Disable/enable building the benchmarks.
     85AC_ARG_ENABLE([benchmark],
     86AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
     87AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),
     88              [], [enable_benchmark=no])
     89AC_MSG_CHECKING([whether to build the benchmarks])
     90if test x"$enable_benchmark" != x"no"; then
     91  AC_MSG_RESULT([yes])
     92else
     93  AC_MSG_RESULT([no])
     94fi
     95AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"])
     96
    8497dnl Checks for header files.
    8598AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
     
    120133#echo SOPLEX support................ : $lx_soplex_found
    121134#echo
     135echo Build benchmarks.............. : $enable_benchmark
    122136echo Build demo programs........... : $enable_demo
    123137echo Build additional tools........ : $enable_tools
Note: See TracChangeset for help on using the changeset viewer.