Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
276 bj 1
// -*- MPC -*-
2
// $Id: vc8lib.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 _WINDOWS 
9
ConfigurationType  = 4
10
use_lib_modifier   = 1
11
Detect64BitPortabilityProblems = false
12
MinimalRebuild     = false
13
DisableSpecificWarnings = 4996
14
 
15
conditional_include "vc8platforms"
16
 
17
Release {
18
  optimize         = 2
19
  defines          = NDEBUG _SECURE_SCL=0
20
  intermediate_dir = Release
21
  runtime_library   = 0
22
}
23
 
24
Debug {
25
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
26
  intermediate_dir = Debug
27
  lib_modifier     = d
28
  runtime_library   = 1
29
}
30
 
31
Install_Debug {
32
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
33
  intermediate_dir = Install_Debug
34
  lib_modifier     = d
35
  runtime_library   = 1
36
  libout       = $(GEL_LIB)
37
  postbuild = xcopy /Y *.h $(GEL_INCLUDE)\$(ProjectName)\
38
}
39
 
40
 
41
Install {
42
  optimize         = 2
43
  defines          = NDEBUG _SECURE_SCL=0
44
  intermediate_dir = Install
45
  runtime_library   = 0
46
  libout       = $(GEL_LIB)
47
  postbuild = xcopy /Y *.h $(GEL_INCLUDE)\$(ProjectName)\
48
}
49
 
50
conditional_include "vcpartialmacros"
51
conditional_include "user_vc8lib"