Changes between Version 3 and Version 4 of GeneratingVisualStudioProject


Ignore:
Timestamp:
Oct 31, 2018, 1:53:06 AM (5 years ago)
Author:
Mateusz Łoskot
Comment:

Update to C++11 requirement

Legend:

Unmodified
Added
Removed
Modified
  • GeneratingVisualStudioProject

    v3 v4  
    11= Generating Visual Studio Project =
    22
    3 Use [http://svn.osgeo.org/gdal/trunk/gdal/generate_vcxproj.bat generate_vcxproj.bat] script available in GDAL source code tree to generate project files ([https://msdn.microsoft.com/en-us/library/2208a1f2.aspx .vcxproj]) for Visual Studio [https://msdn.microsoft.com/en-us/library/ee862524(v=vs.100).aspx 2010 or later].
     3Use [https://github.com/OSGeo/gdal/blob/master/gdal/generate_vcxproj.bat] script available in GDAL source code tree to generate project files ([https://msdn.microsoft.com/en-us/library/2208a1f2.aspx .vcxproj]) for Visual Studio [https://trac.osgeo.org/gdal/wiki/rfc68_cplusplus11 2015 or later].
    44
    55The script generates Visual Studio [https://msdn.microsoft.com/en-us/library/h27k75y5.aspx External Project] (aka [https://msdn.microsoft.com/en-us/library/8y48z24a.aspx Makefile Project]) generated project. Makefile Project almost entirely relies on build configuration defined in GDAL `nmake.opt` (or `nmake.local`) and `makefile.vc` files.
     
    88Usage: generate_vcxproj ^<Visual C++ version^> [32^|64] ^<^(*^) project file name^>
    99Parameters:
    10    1 : Visual C++ version is not the same as Visual Studio version ^( =^> 10.0 ^)
     10   1 : Visual C++ version is not the same as Visual Studio version ^( =^> 14.0 ^)
    1111   2 : Windows platform 32 for Win32 and 64 for Win64
    1212   3 : Base file name, with no path and no extension ^(*^)
    1313Examples:
    14    generate_vcxproj 10.1 32 gdal_vs2010
    15    generate_vcxproj 11.0 64 gdal_vs2012
    16    generate_vcxproj 12.0 64 gdal_vs2013
     14   generate_vcxproj 12.0 64 gdal_vs2013 (not guaranteed to work)
    1715   generate_vcxproj 14.0 64 gdal_vs2015
    1816}}}