Subversion Repositories gelsvn

Rev

Rev 198 | 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
 
7
configurations     = Debug Release Install
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
15
 
16
conditional_include "vc8platforms"
17
 
18
Release {
19
  LinkIncremental  = 1
20
  optimize         = 2
21
  defines          = NDEBUG
22
  intermediate_dir = Release
23
  RuntimeLibrary   = 0
24
  install = $(GEL_ROOT)/bin
25
  ignore_default_library_name = LIBC
26
}
27
 
28
Debug {
29
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
30
  intermediate_dir = Debug
31
  lib_modifier     = d
32
  RuntimeLibrary   = 1
33
  install = $(GEL_ROOT)/bin
34
  ignore_default_library_name = LIBC
35
}
36
 
37
Install {
38
  LinkIncremental  = 1
39
  optimize         = 2
40
  defines          = NDEBUG
41
  intermediate_dir = Release
42
  RuntimeLibrary   = 0
43
  install          = $(GELEXT)\bin
44
  ignore_default_library_name = LIBC
45
 
46
}
47
 
48
conditional_include "vcpartialmacros"
49
conditional_include "user_vc8exe"