summaryrefslogtreecommitdiff
path: root/bin/MakeProjectCreator/templates/vc7dll.mpt
blob: 11927ee0615abfd627b09db6dd4da183167e3717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
conditional_include "idl_compiler_win32"
conditional_include "common"

configurations     = Release Debug "Static Release" "Static Debug"
common_defines     = WIN32 _WINDOWS

Release {
  type_is_dynamic  = 1
  type_is_binary   = 1
  optimize         = 3
  defines          = NDEBUG
  output_dir       = Release
  intermediate_dir = Release
  runtime_library  = 2
  pdb              = 1
}

Debug {
  type_is_dynamic  = 1
  type_is_binary   = 1
  optimize         = 0
  debug            = 1
  defines          = _DEBUG
  output_dir       = .
  intermediate_dir = Debug
  lib_modifier     = d
  runtime_library  = 3
  pdb              = 1
}

Static Release {
  type_is_static   = 1
  optimize         = 3
  defines          = NDEBUG
  output_dir       = Static_Release
  intermediate_dir = Static_Release
  lib_modifier     = s
  need_staticflags = 1
  configuration_type = 4
  runtime_library  = 2
}

Static Debug {
  type_is_static   = 1
  optimize         = 0
  debug            = 1
  defines          = _DEBUG
  output_dir       = Static_Debug
  intermediate_dir = Static_Debug
  lib_modifier     = sd
  need_staticflags = 1
  configuration_type = 4
  runtime_library  = 3
}

MFC Release {
  type_is_dynamic  = 1
  type_is_binary   = 1
  optimize         = 3
  defines          = NDEBUG
  output_dir       = MFC_Release
  intermediate_dir = MFC_Release
  lib_modifier     = mfc
  runtime_library  = 2
  pdb              = 1
  use_mfc          = 2
}

MFC Debug {
  type_is_dynamic  = 1
  type_is_binary   = 1
  optimize         = 0
  debug            = 1
  defines          = _DEBUG
  output_dir       = MFC_Debug
  intermediate_dir = MFC_Debug
  lib_modifier     = mfcd
  runtime_library  = 3
  pdb              = 1
  use_mfc          = 2
}

Static MFC Release {
  type_is_static   = 1
  optimize         = 3
  defines          = NDEBUG
  output_dir       = Static_MFC_Release
  intermediate_dir = Static_MFC_Release
  lib_modifier     = mfcs
  need_staticflags = 1
  configuration_type = 4
  runtime_library  = 2
  use_mfc          = 2
}

Static MFC Debug {
  type_is_static   = 1
  optimize         = 0
  debug            = 1
  defines          = _DEBUG
  output_dir       = Static_MFC_Debug
  intermediate_dir = Static_MFC_Debug
  lib_modifier     = mfcsd
  need_staticflags = 1
  configuration_type = 4
  runtime_library  = 3
  use_mfc          = 2
}

conditional_include "vcfullmacros"