Subversion Repositories gelsvn

Rev

Rev 437 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
202 bj 1
// $Id: README_MSVC 452 2009-04-14 08:14:26Z jrf $
2
//
452 jrf 3
Building instructions for GEL under Visual Studio
39 bj 4
 
202 bj 5
1. Project configuration
6
 
452 jrf 7
We use cmake to maintain .sln and .vcproj files. 
202 bj 8
 
452 jrf 9
2. Runtime checks: _SECURE_SCL and _HAS_ITERATOR_DEBUGGING
202 bj 10
 
437 awk 11
Due to legacy code in GEL, these runtime checks have to be disabled.  This
12
means that when you create a new project in Visual Studio that you intend to
13
use with GEL, you *must* also define _SECURE_SCL=0 and
14
_HAS_ITERATOR_DEBUGGING=0.  Failure to do so will result in random crashes.
213 sda 15