1.1 --- a/INSTALL Mon Jan 12 23:11:39 2009 +0100
1.2 +++ b/INSTALL Thu Nov 05 15:48:01 2009 +0100
1.3 @@ -5,6 +5,12 @@
1.4 tarballs and successfully extracted it. The latest version of LEMON is
1.5 available at our web page (http://lemon.cs.elte.hu/).
1.6
1.7 +LEMON provides two different build environments, one is based on "autotool",
1.8 +while the other is based on "cmake". This file contains instructions only for
1.9 +the former one, which is the recommended build environment on Linux, Mac OSX
1.10 +and other unices or if you use Cygwin on Windows. For cmake installation
1.11 +instructions visit http://lemon.cs.elte.hu.
1.12 +
1.13 In order to install LEMON from the extracted source tarball you have to
1.14 issue the following commands:
1.15
1.16 @@ -21,8 +27,8 @@
1.17 3. `make'
1.18
1.19 This command compiles the non-template part of LEMON into libemon.a
1.20 - file. It also compiles the programs in the tools and demo subdirectories
1.21 - when enabled.
1.22 + file. It also compiles the programs in the tools subdirectory by
1.23 + default.
1.24
1.25 4. `make check'
1.26
1.27 @@ -69,14 +75,6 @@
1.28
1.29 Set the installation prefix to PREFIX. By default it is /usr/local.
1.30
1.31 ---enable-demo
1.32 -
1.33 - Build the examples in the demo subdirectory.
1.34 -
1.35 ---disable-demo
1.36 -
1.37 - Do not build the examples in the demo subdirectory (default).
1.38 -
1.39 --enable-tools
1.40
1.41 Build the programs in the tools subdirectory (default).
1.42 @@ -152,3 +150,26 @@
1.43 --without-soplex
1.44
1.45 Disable SoPlex support.
1.46 +
1.47 +--with-coin[=PREFIX]
1.48 +
1.49 + Enable support for COIN-OR solvers (CLP and CBC). You should
1.50 + specify the prefix too. (by default, COIN-OR tools install
1.51 + themselves to the source code directory). This command enables the
1.52 + solvers that are actually found.
1.53 +
1.54 +--with-coin-includedir=DIR
1.55 +
1.56 + The directory where the COIN-OR header files are located. This is
1.57 + only useful when the COIN-OR headers and libraries are not under
1.58 + the same prefix (which is unlikely).
1.59 +
1.60 +--with-coin-libdir=DIR
1.61 +
1.62 + The directory where the COIN-OR libraries are located. This is only
1.63 + useful when the COIN-OR headers and libraries are not under the
1.64 + same prefix (which is unlikely).
1.65 +
1.66 +--without-coin
1.67 +
1.68 + Disable COIN-OR support.