Changes between Version 12 and Version 13 of WikiStart


Ignore:
Timestamp:
Jul 15, 2008, 3:19:22 AM (16 years ago)
Author:
mloskot
Comment:

Updated Build and Install section

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v12 v13  
    2828}}}
    2929
    30 == Install ==
     30== Build and Install ==
    3131
    32 Download the latest source code release.
     32=== Unix ===
     33
     34Download the latest source code release and issue following commands:
    3335
    3436{{{
    35  ./configure
    36  make
    37  make install
     37./configure
     38make
     39make install
    3840}}}
     41
     42=== Windows ===
     43
     44If you use Microsoft Visual C++ (7.1 or later) compiler, you can build GEOS using NMAKE program and provided makefile.vc file:
     45
     46{{{
     47bootstrap.bat
     48nmake /f makefile.vc clean
     49nmake /f makefile.vc
     50}}}
     51
     52The ''bootstrap.bat'' step is required to generate a couple of header files.
    3953
    4054== Development ==