summaryrefslogtreecommitdiff
path: root/templates/vc1xlibexe.mpt
blob: bdb9664c46156c1693110a6bbbed22089785bc0f (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
// -*- MPC -*-
conditional_include "common"
conditional_include "windowscommon"

configurations           = Debug Release
common_defines           = WIN32 _CONSOLE _CRT_NONSTDC_NO_WARNINGS
ConfigurationType        = 1
SubSystem                = Console
MinimalRebuild           = false
GenerateDebugInformation = true

Release {
  LinkIncremental          = 1
  optimize                 = MaxSpeed
  defines                  = NDEBUG
  output_dir               = Static_Release
  intermediate_dir         = Static_Release
  lib_modifier             = s
  EnableIntrinsicFunctions = true
  WholeProgramOptimization = true
}

Debug {
  debug_prj        = 1
  defines          = _DEBUG
  output_dir       = Static_Debug
  intermediate_dir = Static_Debug
  lib_modifier     = sd
}

Memcheck Release {
  optimize                 = MaxSpeed
  defines                  = NDEBUG
  output_dir               = Static_Release
  intermediate_dir         = Static_Release
  lib_modifier             = s
  BasicRuntimeChecks       = 0
  LinkIncremental          = 1
  FixedBaseAddress         = 1
  EnableIntrinsicFunctions = true
  WholeProgramOptimization = true
}

Memcheck Debug {
  debug_prj          = 1
  defines            = _DEBUG
  output_dir         = Static_Debug
  intermediate_dir   = Static_Debug
  lib_modifier       = sd
  BasicRuntimeChecks = 0
  LinkIncremental    = 1
  FixedBaseAddress   = 1
}

MFC Release {
  LinkIncremental          = 1
  optimize                 = MaxSpeed
  common_defines           = WIN32 _WINDOWS
  defines                  = NDEBUG _AFXDLL
  output_dir               = Static_MFC_Release
  intermediate_dir         = Static_MFC_Release
  lib_modifier             = mfcs
  UseOfMFC                 = Dynamic
  unicode_mfc_entry        = wWinMainCRTStartup
  EnableIntrinsicFunctions = true
  WholeProgramOptimization = true
}

MFC Debug {
  debug_prj         = 1
  common_defines    = WIN32 _WINDOWS
  defines           = _DEBUG _AFXDLL
  output_dir        = Static_MFC_Debug
  intermediate_dir  = Static_MFC_Debug
  lib_modifier      = mfcsd
  UseOfMFC          = Dynamic
  unicode_mfc_entry = wWinMainCRTStartup
}

conditional_include "vcpartialmacros"