COIN-OR::LEMON - Graph Library

Changeset 2390:8450951a8e2d in lemon-0.x


Ignore:
Timestamp:
03/03/07 17:04:50 (17 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3221
Message:
  • '-Wshadow' seemed to strict therefore removed
  • a tools directory added for useful executables codes
  • tools/lgf-gen.cc (a random graph generator) added
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r2315 r2390  
    2323noinst_HEADERS =
    2424noinst_PROGRAMS =
     25bin_PROGRAMS =
    2526check_PROGRAMS =
    2627TESTS =
     
    3233include demo/Makefile.am
    3334include benchmark/Makefile.am
     35include tools/Makefile.am
    3436
    3537MRPROPERFILES = \
  • configure.ac

    r2386 r2390  
    1818
    1919if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
    20   CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -Wshadow -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
     20  CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
    2121fi
    2222
     
    6767fi
    6868AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
     69
     70dnl Disable/enable building the binary tools
     71AC_ARG_ENABLE([tools],
     72AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
     73AS_HELP_STRING([--disable-tools], [do not build additional tools]),
     74              [], [enable_tools=yes])
     75AC_MSG_CHECKING([whether to build the additional tools])
     76if test x"$enable_tools" != x"no"; then
     77  AC_MSG_RESULT([yes])
     78else
     79  AC_MSG_RESULT([no])
     80fi
     81AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
    6982
    7083dnl Disable/enable building the benchmarks
     
    119132echo build benchmarks.............. : $enable_benchmark
    120133echo build demo programs........... : $enable_demo
     134echo build additional tools........ : $enable_tools
    121135echo
    122136echo The packace will be installed in
  • doc/dirs.dox

    r2350 r2390  
    2222*/
    2323
     24/**
     25\dir tools
     26\brief Some useful executables
     27
     28This directory contains the sources of some useful complete executables.
     29
     30*/
    2431
    2532
  • lemon/arg_parser.cc

    r2389 r2390  
    2121  void ArgParser::_showHelp(void *p)
    2222  {
    23     ((ArgParser*)p)->showHelp();
     23    (static_cast<ArgParser*>(p))->showHelp();
    2424    exit(1);
    2525  }
Note: See TracChangeset for help on using the changeset viewer.