Changes between Version 2 and Version 3 of DavesWindowsBuild


Ignore:
Timestamp:
Feb 21, 2013, 9:12:30 AM (11 years ago)
Author:
dburken
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DavesWindowsBuild

    v2 v3  
    77Feedback welcome.  Please send to the ossim mailing list at "ossim-developer AT lists.sourceforge.net" and reference this page.
    88
    9 Note: Windows command shell commands start with ">", unix commands start with $, anything else will be notes, comments. If you see a $ <some_command> // The part after slash slash is a comment.
     9Note: Windows command shell commands start with ":\>", unix commands start with $, anything else will be notes, comments. If you see a $ <some_command> // The part after slash slash is a comment.
    1010
    1111'''Environment variables'''[[BR]]
     
    2323set OSSIM_HOME=%OSSIM_DEV_HOME%\ossim
    2424set OSSIM_PREFS_FILE=%OSSIM_DEV_HOME%\ossim-prefs
    25 set QTDIR=D:\Qt3.2
    26 set PATH=D:\cmake\cmake-2.8.10.2-win32-x86\bin;%OSSIM_DEV_HOME%\build\bin;%OSSIM_DEV_HOME%\local\bin;C:\Program Files (x86)\XEmacs\XEmacs-21.4.22\i586-pc-win32;D:\Qt\4.8.4\bin;%PATH%
     25set QTDIR=D:\Qt\4.8.4
     26set PATH=D:\cmake\cmake-2.8.10.2-win32-x86\bin;%OSSIM_DEV_HOME%\build\bin;%OSSIM_DEV_HOME%\local\bin;C:\Program Files (x86)\XEmacs\XEmacs-21.4.22\i586-pc-win32;%QTDIR%\bin;%PATH%
    2727}}}
    28 
    2928
    3029
     
    5655'''geos:'''[[BR]]
    5756// Needed by ossim.[[BR]]
    58 > mkdir %OSSIM_DEV_HOME%\geos[[BR]]
    59 > cd %OSSIM_DEV_HOME%\geos[[BR]]
     57D:\> mkdir %OSSIM_DEV_HOME%\geos[[BR]]
     58D:\> cd %OSSIM_DEV_HOME%\geos[[BR]]
    6059// Get code from svn or optionally download a release.[[BR]]
    61 > svn co http://svn.osgeo.org/geos/trunk geos-svn[[BR]]
     60D:\dev\vs10_x64\geos> svn co http://svn.osgeo.org/geos/trunk geos-svn[[BR]]
    6261
    6362// Make a cmake config script[[BR]]
    64 > xemacs geos-cmake-config.bat // Use whatever editor you want, notepad, whatever...[[BR]]
     63D:\dev\vs10_x64\geos> xemacs geos-cmake-config.bat // Use whatever editor you want, notepad, whatever...[[BR]]
    6564// Contents of script:[[BR]]
    6665
     
    7978}}}
    8079
    81 > mkdir build // "out of source" build dir[[BR]]
    82 > cd build[[BR]]
     80D:\dev\vs10_x64\geos> mkdir build // "out of source" build dir[[BR]]
     81D:\dev\vs10_x64\geos> cd build[[BR]]
    8382
    8483// Run the cmake command to set up the build system:[[BR]]
    85 > ..\geos-cmake-config.sh
     84D:\dev\vs10_x64\geos\build> ..\geos-cmake-config.sh
    8685
    8786// Make:[[BR]]
    88 > nmake
     87D:\dev\vs10_x64\geos\build> nmake
    8988
    9089// Install to sandbox:[[BR]]
    91 $ nmake install
     90D:\dev\vs10_x64\geos\build> nmake install
    9291
    9392// End of GEOS