| | 1 | = Install on Windows (from source, with CMAKE) = |
| | 2 | |
| | 3 | First, 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 | |
| | 7 | You 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 | |
| | 9 | Finally - assuming you use a recent version of use Visual Studio - |
| | 10 | start a "Visual Studio Command Prompt" from the start menu. Then, in |
| | 11 | the command prompt, step into the extracted {{{LEMON}}} source directory and |
| | 12 | type in the following commands. |
| | 13 | |
| | 14 | {{{ |
| | 15 | mkdir build |
| | 16 | cd build |
| | 17 | cmake -G "NMake Makefiles" .. |
| | 18 | nmake |
| | 19 | nmake install |
| | 20 | }}} |