Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
223 bj 1
// -*- MPC -*-
2
// $Id: vc8exe.mpt,v 1.3 2005/10/06 21:52:57 shuston Exp $
3
 
4
conditional_include "common"
5
conditional_include "windowscommon"
6
 
7
configurations     = Debug Release Install Install_Debug
8
common_defines     = WIN32 _CONSOLE 
9
ConfigurationType  = 1
10
SubSystem          = 1
11
Detect64BitPortabilityProblems = false
12
MinimalRebuild     = false
13
DisableSpecificWarnings = 4996
14
use_exe_modifier   = 1
15
 
16
 
17
conditional_include "vc8platforms"
18
 
19
Release {
20
  LinkIncremental  = 1
21
  optimize         = 2
276 bj 22
  defines          = NDEBUG _SECURE_SCL=0
223 bj 23
  intermediate_dir = Release
24
  runtime_library  = 0
25
  install = $(GEL_ROOT)/bin
26
}
27
 
28
Debug {
29
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
30
  intermediate_dir = Debug
31
  lib_modifier     = d
32
  runtime_library   = 1
33
  install = $(GEL_ROOT)/bin
34
}
35
 
36
Install_Debug {
37
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
38
  intermediate_dir = Debug
39
  lib_modifier     = d
40
  runtime_library   = 1
257 bj 41
  install          = $(GEL_BIN)
223 bj 42
}
43
 
44
Install {
45
  LinkIncremental  = 1
46
  optimize         = 2
276 bj 47
  defines          = NDEBUG _SECURE_SCL=0
223 bj 48
  intermediate_dir = Release
49
  runtime_library   = 0
257 bj 50
  install          = $(GEL_BIN)  
223 bj 51
}
52
 
53
conditional_include "vcpartialmacros"
54
conditional_include "user_vc8exe"