Changes between Version 9 and Version 10 of BuildingOnWindowsWithNMake


Ignore:
Timestamp:
Jul 27, 2012, 1:18:54 AM (12 years ago)
Author:
mloskot
Comment:

How to manually create geos_svn_revision.h

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnWindowsWithNMake

    v9 v10  
    1818
    1919Notice, ''tools\svn_repo_revision.sh'' is a Bash script, so you need Bash some means to run Bash scripts on Windows.
     20
     21Alternatively, you can create `geos_svn_revision.h` file manually in the top directory of the source tree:
     22
     23* In the root directory of your copy of SVN trunk:
     24{{{
     25svn info
     26}}}
     27* Locate line starting with ''Revision'':
     28{{{
     29Revision: 3704
     30}}}
     31* Use the revision number (in the output above it is `3704`) to create `geos_svn_revision.h`:
     32{{{
     33echo #define GEOS_SVN_REVISION 3704 > geos_svn_revision.h
     34}}}
    2035
    2136== Build ==