Subversion Repositories gelsvn

Rev

Rev 452 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 452 Rev 596
Line 1... Line 1...
1
// $Id: README_MSVC 452 2009-04-14 08:14:26Z jrf $
1
// $Id: README_MSVC 596 2012-09-26 08:08:44Z jab $
2
//
2
//
3
Building instructions for GEL under Visual Studio
3
Building instructions for GEL under Visual Studio
4
 
4
 
5
1. Project configuration
5
1. Project configuration
6
 
6
 
7
We use cmake to maintain .sln and .vcproj files. 
7
We use cmake to maintain .sln and .vcproj files. 
8
 
8
 
9
2. Runtime checks: _SECURE_SCL and _HAS_ITERATOR_DEBUGGING
-
 
10
 
-
 
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.
-
 
15
 
9