Subversion Repositories gelsvn

Rev

Rev 257 | Rev 276 | 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: vc8lib.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 _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
20
  intermediate_dir = Release
221 ho 21
  runtime_library   = 0
198 bj 22
}
23
 
24
Debug {
25
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
26
  intermediate_dir = Debug
27
  lib_modifier     = d
221 ho 28
  runtime_library   = 1
198 bj 29
}
30
 
212 bj 31
Install_Debug {
32
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
33
  intermediate_dir = Install_Debug
34
  lib_modifier     = d
221 ho 35
  runtime_library   = 1
257 bj 36
  libout       = $(GEL_LIB)
37
  postbuild = xcopy /Y *.h $(GEL_INCLUDE)\$(ProjectName)\
212 bj 38
}
198 bj 39
 
212 bj 40
 
198 bj 41
Install {
42
  optimize         = 2
43
  defines          = NDEBUG
44
  intermediate_dir = Install
221 ho 45
  runtime_library   = 0
257 bj 46
  libout       = $(GEL_LIB)
47
  postbuild = xcopy /Y *.h $(GEL_INCLUDE)\$(ProjectName)\
198 bj 48
}
49
 
50
conditional_include "vcpartialmacros"
51
conditional_include "user_vc8lib"