Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
107 bj 1
// -*- MPC -*-
2
// $Id: vc6dspdll.mpt 217 2006-05-05 09:35:48Z bj $
3
 
4
conditional_include "common"
5
conditional_include "vccommon"
6
conditional_include "windowscommon"
7
 
8
type_description = "Dynamic-Link Library"
9
type_code        = 0x0102
10
configurations   = Debug Release
11
common_defines   = WIN32 _WINDOWS
12
use_lib_modifier = 1
13
 
14
Release {
15
  use_debug_libraries   = 0
16
  optimize              = 1
17
  compile_flags         = /W3 /GX /MD /GR
18
  defines               = NDEBUG
19
  compile_flags_removed = /YX
20
  output_dir            = Release
21
  intermediate_dir      = Release
22
  debug_switch          =
23
}
24
 
25
Debug {
26
  use_debug_libraries   = 1
27
  optimize              =
28
  compile_flags         = /W3 /Gm /GX /Zi /MDd /GR /Gy
29
  defines               = _DEBUG
30
  compile_flags_removed = /Fr /YX
31
  intermediate_dir      = Debug
32
  lib_modifier          = d
33
  pdbl                  = 1
34
  pdbc                  = 1
35
}
36
 
37
MFC Release {
38
  use_debug_libraries   = 0
39
  optimize              = 1
40
  compile_flags         = /W3 /GX /MD /GR
217 bj 41
  defines               = NDEBUG _WINDLL _AFXDLL
107 bj 42
  compile_flags_removed = /YX
43
  output_dir            = MFC_Release
44
  intermediate_dir      = MFC_Release
45
  debug_switch          =
46
  lib_modifier          = mfc
47
  use_mfc               = 2
48
}
49
 
50
MFC Debug {
51
  use_debug_libraries   = 1
52
  optimize              =
53
  compile_flags         = /W3 /Gm /GX /Zi /MDd /GR /Gy
217 bj 54
  defines               = _DEBUG _WINDLL _AFXDLL
107 bj 55
  compile_flags_removed = /Fr /YX
56
  output_dir            = MFC_Debug
57
  intermediate_dir      = MFC_Debug
58
  lib_modifier          = mfcd
59
  pdbl                  = 1
60
  pdbc                  = 1
61
  use_mfc               = 2
62
}
63
 
64
conditional_include "vcpartialmacros"
65
conditional_include "user_vc6dspdll"