Changes between Version 3 and Version 4 of BuildingOnWindowsWithCMake


Ignore:
Timestamp:
Oct 11, 2010, 2:02:22 PM (14 years ago)
Author:
aperi2007
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnWindowsWithCMake

    v3 v4  
    66}}}
    77
    8 = Building on Unix with CMake =
     8= Building on Windows with CMake =
    99
    1010This article describes how to use CMake build system to build and install GEOS from sources on Microsoft Windows systems using Visual C++ compiler.
     11----
     12Download "cmake-2.8.2-win32-x86.zip" from
     13http://www.cmake.org/cmake/resources/software.html
     14explode it on a path (eg: c:\cmake\")
     15add to the path the ../bin directory
     16eg: SET PATH=c:\cmake\cmake-2.8.2-win32-x86\bin;%PATH%
     17start a shell dos.
    1118
    12 ''TODO''
     19to use:
     20suppose for example the geos-trunk is downloaded in "c:\svn"
     21you may create a new folder like "c:\test_geos"
     22enter in "c:\test_geos" and run the command for the compiler you like use:
     23
     24c:\test_geo> cmake -G "Visual Studio 9 2008" ../svn
     25
     26or
     27
     28c:\test_geo>cmake -G "Visual Studio 9 2008 Win64" ../svn
     29
     30or
     31
     32c:\test_geo>cmake -G "NMake Makefiles" ../svn
     33
     34
     35after this you can compile geos from the folder "c:\test_geos".
     36
    1337
    1438= Open Tickets =