Subversion Repositories gelsvn

Rev

Rev 107 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
// -*- MPC -*-
2
// $Id: vc6dsplibexe.mpt 107 2005-09-02 16:42:23Z bj $
3
 
4
conditional_include "common"
5
conditional_include "vccommon"
6
conditional_include "windowscommon"
7
 
8
type_description      = "Console Application"
9
type_code             = 0x0103
10
configurations        = Debug Release
11
default_configuration = Debug
12
common_defines        = WIN32 _CONSOLE
13
subsystem             = console
14
use_exe_modifier      =
15
 
16
Release {
17
  use_debug_libraries   = 0
18
  optimize              = 1
19
  compile_flags         = /W3 /GX /MD /GR
20
  defines               = NDEBUG
21
  compile_flags_removed = /YX
22
  lib_modifier          = s
23
  output_dir            = Static_Release
24
  intermediate_dir      = Static_Release
25
  debug_switch          =
26
}
27
 
28
Debug {
29
  use_debug_libraries   = 1
30
  optimize              =
31
  compile_flags         = /W3 /Gm /GX /Zi /MDd /GR /Gy
32
  defines               = _DEBUG
33
  compile_flags_removed = /YX
34
  intermediate_dir      = Static_Debug
35
  output_dir            = Static_Debug
36
  lib_modifier          = sd
37
  pdbl                  = 1
38
  pdbc                  = 1
39
}
40
 
41
MFC Release {
42
  subsystem             = windows
43
  use_debug_libraries   = 0
44
  optimize              = 1
45
  compile_flags         = /W3 /GX /MD /GR
46
  common_defines        = WIN32 _WINDOWS
47
  defines               = NDEBUG _AFXDLL
48
  compile_flags_removed = /YX
49
  output_dir            = Static_MFC_Release
50
  intermediate_dir      = Static_MFC_Release
51
  debug_switch          =
52
  lib_modifier          = mfcs
53
  use_mfc               = 2
54
  unicode_mfc_entry     = wWinMainCRTStartup
55
}
56
 
57
MFC Debug {
58
  subsystem             = windows
59
  use_debug_libraries   = 1
60
  optimize              =
61
  compile_flags         = /W3 /Gm /GX /Zi /MDd /GR /Gy
62
  common_defines        = WIN32 _WINDOWS
63
  defines               = _DEBUG _AFXDLL
64
  compile_flags_removed = /YX
65
  intermediate_dir      = Static_MFC_Debug
66
  output_dir            = Static_MFC_Debug
67
  lib_modifier          = mfcsd
68
  pdbl                  = 1
69
  pdbc                  = 1
70
  use_mfc               = 2
71
  unicode_mfc_entry     = wWinMainCRTStartup
72
}
73
 
74
conditional_include "vcpartialmacros"
75
conditional_include "user_vc6dsplibexe"