COIN-OR::LEMON - Graph Library

Changes between Initial Version and Version 1 of InstallCmake


Ignore:
Timestamp:
01/20/09 16:59:41 (15 years ago)
Author:
Alpar Juttner
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallCmake

    v1 v1  
     1= Install on Windows (from source, with CMAKE) =
     2
     3First, you should obtain and extract the source code. You can either use the  mercurial repository, or use the following links.
     4 - [http://lemon.cs.elte.hu/hg/lemon-main/archive/r1.0.1.zip Latest stable release, version 1.0.1 (.zip)]
     5 - [http://lemon.cs.elte.hu/hg/lemon-main/archive/tip.zip Latest development snapshot (.zip)]
     6
     7You must also download and install [http://www.cmake.org/files/v2.6/cmake-2.6.2-win32-x86.exe CMake 2.6.2 (.exe installer)] or later.
     8
     9Finally - assuming you use a recent version of use Visual Studio -
     10start a "Visual Studio Command Prompt" from the start menu. Then, in
     11the command prompt, step into the extracted {{{LEMON}}} source directory and
     12type in the following commands.
     13
     14{{{
     15mkdir build
     16cd build
     17cmake -G "NMake Makefiles" ..
     18nmake
     19nmake install
     20}}}