Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
198 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
 
212 bj 7
configurations     = Debug Release Install Install_Debug
198 bj 8
common_defines     = WIN32 _CONSOLE 
9
ConfigurationType  = 1
10
SubSystem          = 1
11
Detect64BitPortabilityProblems = false
12
MinimalRebuild     = false
13
Ignore_default_library_names = 1
14
DisableSpecificWarnings = 4996
212 bj 15
use_exe_modifier   = 1
198 bj 16
 
212 bj 17
 
198 bj 18
conditional_include "vc8platforms"
19
 
20
Release {
21
  LinkIncremental  = 1
22
  optimize         = 2
23
  defines          = NDEBUG
24
  intermediate_dir = Release
221 ho 25
  runtime_library  = 0
198 bj 26
  install = $(GEL_ROOT)/bin
27
  ignore_default_library_name = LIBC
28
}
29
 
30
Debug {
31
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
32
  intermediate_dir = Debug
33
  lib_modifier     = d
221 ho 34
  runtime_library   = 1
198 bj 35
  install = $(GEL_ROOT)/bin
36
  ignore_default_library_name = LIBC
37
}
38
 
212 bj 39
Install_Debug {
40
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
41
  intermediate_dir = Debug
42
  lib_modifier     = d
221 ho 43
  runtime_library   = 1
212 bj 44
  install          = $(GELEXT)\bin
45
  ignore_default_library_name = LIBC
46
}
47
 
198 bj 48
Install {
49
  LinkIncremental  = 1
50
  optimize         = 2
51
  defines          = NDEBUG
52
  intermediate_dir = Release
221 ho 53
  runtime_library   = 0
198 bj 54
  install          = $(GELEXT)\bin
55
  ignore_default_library_name = LIBC
56
 
57
}
58
 
59
conditional_include "vcpartialmacros"
60
conditional_include "user_vc8exe"