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: vc6dspdllexe.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
common_defines   = WIN32 _CONSOLE
12
subsystem        = console
13
use_exe_modifier =
14
 
15
Release {
16
  use_debug_libraries   = 0
17
  optimize              = 1
18
  compile_flags         = /W3 /GX /MD /GR
19
  defines               = NDEBUG
20
  compile_flags_removed = /YX
21
  output_dir            = Release
22
  intermediate_dir      = Release
23
  debug_switch          =
24
}
25
 
26
Debug {
27
  use_debug_libraries   = 1
28
  optimize              =
29
  compile_flags         = /W3 /Gm /GX /Zi /MDd /GR /Gy
30
  defines               = _DEBUG
31
  compile_flags_removed = /YX
32
  intermediate_dir      = Debug
33
  output_dir            = .
34
  lib_modifier          = d
35
  pdbl                  = 1
36
  pdbc                  = 1
37
}
38
 
39
MFC Release {
40
  subsystem             = windows
41
  use_debug_libraries   = 0
42
  optimize              = 1
43
  compile_flags         = /W3 /GX /MD /GR
44
  common_defines        = WIN32 _WINDOWS
45
  defines               = NDEBUG _AFXDLL
46
  compile_flags_removed = /YX
47
  output_dir            = MFC_Release
48
  intermediate_dir      = MFC_Release
49
  debug_switch          =
50
  lib_modifier          = mfc
51
  use_mfc               = 2
52
  unicode_mfc_entry     = wWinMainCRTStartup
53
}
54
 
55
MFC Debug {
56
  subsystem             = windows
57
  use_debug_libraries   = 1
58
  optimize              =
59
  compile_flags         = /W3 /Gm /GX /Zi /MDd /GR /Gy
60
  common_defines        = WIN32 _WINDOWS
61
  defines               = _DEBUG _AFXDLL
62
  compile_flags_removed = /YX
63
  intermediate_dir      = MFC_Debug
64
  output_dir            = MFC_Debug
65
  lib_modifier          = mfcd
66
  pdbl                  = 1
67
  pdbc                  = 1
68
  use_mfc               = 2
69
  unicode_mfc_entry     = wWinMainCRTStartup
70
}
71
 
72
conditional_include "vcpartialmacros"
73
conditional_include "user_vc6dspdllexe"