COIN-OR::LEMON - Graph Library

Changeset 18:a291609dad52 in lemon-tutorial


Ignore:
Timestamp:
11/06/08 16:55:09 (15 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Fix compilation instructions for user-local installation

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • getting_started.dox

    r16 r18  
    5353
    5454If LEMON is installed <b>user-local</b> into a directory
    55 (e.g. <tt>~/lemon</tt>) or if you just skipped the step
    56 <tt>make install</tt>, then compiling the code is a bit more difficult.
     55(e.g. <tt>~/lemon</tt>), then compiling the code is a bit more difficult.
    5756You have to issue a command like this.
    5857
    5958\verbatim
    60 g++ -lemon -I ~/lemon -L ~/lemon/lemon/.libs hello_lemon.cc -o hello_lemon
     59g++ -lemon -I ~/lemon/include -L ~/lemon/lib hello_lemon.cc -o hello_lemon
    6160\endverbatim
    6261
  • install.dox

    r12 r18  
    216216
    217217You have to give more options to the compiler if LEMON is installed
    218 user-local into a directory (denoted by <tt>&lt;dir&gt;</tt>)
    219 or if you just skipped the step <tt>make install</tt>.
    220 In the later case <tt>&lt;dir&gt;</tt> denotes the directory in which the
    221 the \c make command have been performed.
    222 
    223 \verbatim
    224 g++ -lemon -I <dir> -L <dir>/lemon/.libs [other options] <source file>
     218user-local into a directory (denoted by <tt>&lt;dir&gt;</tt>).
     219
     220\verbatim
     221g++ -lemon -I <dir>/include -L <dir>/lib [other options] <source file>
    225222\endverbatim
    226223
Note: See TracChangeset for help on using the changeset viewer.