COIN-OR::LEMON - Graph Library

Changes between Version 5 and Version 6 of ProjectTemplate


Ignore:
Timestamp:
10/06/09 12:43:18 (15 years ago)
Author:
Peter Kovacs
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProjectTemplate

    v5 v6  
    11= LEMON Project Template =
    22
    3 The aim of [http://lemon.cs.elte.hu/hg/lemon-project-template the template repository] is to make is easier to setup a new LEMON based project.
     3The aim of [http://lemon.cs.elte.hu/hg/lemon-project-template the template repository] is to make it easier to setup a new LEMON based project.
    44It provides a cross platform [http://cmake.org/ CMake] build environment.
    55
     
    1717}}}
    1818
    19 As you probably want to use LEMON in your project, you will need it too. For this you have to options. You can either install it somewhere or use a local copy of LEMON dedicated to your project. This later option is especially useful if you also modify/develop LEMON along with your project, or want to use a specific version.
     19As you probably want to use LEMON in your project, you will need it too. For this you have two options. You can either install it somewhere or use a local copy of LEMON dedicated to your project. This later option is especially useful if you also modify/develop LEMON along with your project, or want to use a specific version.
    2020
    21 === Use a preinstalled version. ===
     21=== Use a preinstalled version ===
    2222
    23 See the [InstallGuide LEMON Install Guide] for instructions on how to install LEMON. If you installed it to a non-standard place, you must let CMAKE know where to find it in the LEMON_ROOT_DIR config variable.
     23See the [InstallGuide LEMON Install Guide] for instructions on how to install LEMON. If you installed it to a non-standard place, you must let CMake know where to find it in the LEMON_ROOT_DIR config variable.
    2424
    25 === Use LEMON as a subproject. ===
     25=== Use LEMON as a subproject ===
    2626
    2727Just simply copying the LEMON source code into the 'lemon' subdir will do the job. Namely, you can either extract a release tarball
     
    5050}}}
    5151
    52 For example this has the benefit that you can clone your project repository together with the {{{lemon}}} repository.
     52For example, this has the benefit that you can clone your project repository together with the {{{lemon}}} repository.
    5353You can read more about subrepository support in Mercurial [http://mercurial.selenic.com/wiki/subrepos here].
    5454
    55 Then run CMAKE to create the makefiles and compile the code as usual.
     55Then run CMake to create the makefiles and compile the code as usual.
    5656
    5757{{{