COIN-OR::LEMON - Graph Library

Ticket #273: 3e28dbeed635.patch

File 3e28dbeed635.patch, 943 bytes (added by Balazs Dezso, 16 years ago)

Fix

  • getting_started.dox

    # HG changeset patch
    # User Balazs Dezso <deba@inf.elte.hu>
    # Date 1240857969 -7200
    # Node ID 3e28dbeed635902616afbefcb4179df55b36ec1b
    # Parent  96d9cc65c8db41629baee5dbbddfe5971ec26b12
    Fix compilation order (#273)
    
    diff -r 96d9cc65c8db -r 3e28dbeed635 getting_started.dox
    a b  
    4242that we are using the installed LEMON).
    4343
    4444\verbatim
    45 g++ -lemon -o hello_lemon hello_lemon.cc
     45g++ -o hello_lemon hello_lemon.cc -lemon
    4646\endverbatim
    4747
    4848As a result you will get the exacutable \c hello_lemon in the current
     
    5757You have to issue a command like this.
    5858
    5959\verbatim
    60 g++ -lemon -I ~/lemon/include -L ~/lemon/lib -o hello_lemon hello_lemon.cc
     60g++ -o hello_lemon -I ~/lemon/include hello_lemon.cc -L ~/lemon/lib -lemon
    6161\endverbatim
    6262
    6363If everything has gone well, then our program prints out the followings.