Changes between Version 4 and Version 5 of BuildingOnWindowsWithCMake


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

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnWindowsWithCMake

    v4 v5  
    1212Download "cmake-2.8.2-win32-x86.zip" from
    1313http://www.cmake.org/cmake/resources/software.html
    14 explode it on a path (eg: c:\cmake\")
    15 add to the path the ../bin directory
    16 eg: SET PATH=c:\cmake\cmake-2.8.2-win32-x86\bin;%PATH%
    17 start a shell dos.
     14explode it on a path (eg: c:\cmake\") and add to the path the ../bin directory
     15eg:
     16SET PATH=c:\cmake\cmake-2.8.2-win32-x86\bin;%PATH%
     17after this start a shell dos.
    1818
    19 to use:
    20 suppose for example the geos-trunk is downloaded in "c:\svn"
     19to create the project with cmake do this:
     20
     21suppose for example the geos-trunk was downloaded in "c:\svn"
    2122you may create a new folder like "c:\test_geos"
    2223enter in "c:\test_geos" and run the command for the compiler you like use:
     24(please notice the / instead of \)
    2325
    2426c:\test_geo> cmake -G "Visual Studio 9 2008" ../svn
     
    3234c:\test_geo>cmake -G "NMake Makefiles" ../svn
    3335
    34 
    35 after this you can compile geos from the folder "c:\test_geos".
     36with these commands cmake create a project able to compile geos in the path "c:\test_geos"
    3637
    3738