~ubuntu-branches/debian/jessie/ace/jessie

« back to all changes in this revision

Viewing changes to MPC/templates/vc10exe.mpt

  • Committer: Package Import Robot
  • Author(s): Pau Garcia i Quiles
  • Date: 2014-10-01 19:27:00 UTC
  • mfrom: (1.2.8)
  • Revision ID: package-import@ubuntu.com-20141001192700-67yys244im0j3nu1
Tags: 6.2.8+dfsg-1
* New upstream version
* Drop patch 25-versioned_so.diff (applied upstream)
* Drop patch 36-fix-typos.diff (applied upstream)
* Drop patch 38-fix-predictable-filename-in-tmp.diff (applied upstream)
* Drop patch largefile.diff (applied upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// -*- MPC -*-
2
 
// $Id: vc10exe.mpt 1881 2010-08-17 22:03:31Z mitza $
3
 
 
4
 
conditional_include "common"
5
 
conditional_include "windowscommon"
6
 
 
7
 
configurations     = Debug Release
8
 
common_defines     = WIN32 _CONSOLE _CRT_NONSTDC_NO_WARNINGS
9
 
ConfigurationType  = 1
10
 
SubSystem          = Console
11
 
MinimalRebuild     = false
12
 
GenerateDebugInformation = true
 
2
// $Id: vc10exe.mpt 2210 2014-06-26 16:33:55Z elliott_c $
13
3
 
14
4
conditional_include "vc10platforms"
15
 
 
16
 
Release {
17
 
  LinkIncremental  = 1
18
 
  optimize         = MaxSpeed
19
 
  defines          = NDEBUG
20
 
  output_dir       = Release
21
 
  intermediate_dir = Release
22
 
  EnableIntrinsicFunctions = true
23
 
  WholeProgramOptimization = true
24
 
}
25
 
 
26
 
Debug {
27
 
  debug_prj        = 1
28
 
  defines          = _DEBUG
29
 
  intermediate_dir = Debug
30
 
  lib_modifier     = d
31
 
}
32
 
 
33
 
Memcheck Release {
34
 
  optimize           = MaxSpeed
35
 
  defines            = NDEBUG
36
 
  output_dir         = Release
37
 
  intermediate_dir   = Release
38
 
  BasicRuntimeChecks = 0
39
 
  LinkIncremental    = 1
40
 
  FixedBaseAddress   = 1
41
 
  EnableIntrinsicFunctions = true
42
 
  WholeProgramOptimization = true
43
 
}
44
 
 
45
 
Memcheck Debug {
46
 
  debug_prj          = 1
47
 
  defines            = _DEBUG
48
 
  intermediate_dir   = Debug
49
 
  lib_modifier       = d
50
 
  BasicRuntimeChecks = 0
51
 
  LinkIncremental    = 1
52
 
  FixedBaseAddress   = 1
53
 
}
54
 
 
55
 
MFC Release {
56
 
  LinkIncremental   = 1
57
 
  optimize          = MaxSpeed
58
 
  common_defines    = WIN32 _WINDOWS
59
 
  defines           = NDEBUG _AFXDLL
60
 
  output_dir        = MFC_Release
61
 
  intermediate_dir  = MFC_Release
62
 
  lib_modifier      = mfc
63
 
  UseOfMFC          = Dynamic
64
 
  unicode_mfc_entry = wWinMainCRTStartup
65
 
  EnableIntrinsicFunctions = true
66
 
  WholeProgramOptimization = true
67
 
}
68
 
 
69
 
MFC Debug {
70
 
  debug_prj         = 1
71
 
  common_defines    = WIN32 _WINDOWS
72
 
  defines           = _DEBUG _AFXDLL
73
 
  output_dir        = MFC_Debug
74
 
  intermediate_dir  = MFC_Debug
75
 
  lib_modifier      = mfcd
76
 
  UseOfMFC          = Dynamic
77
 
  unicode_mfc_entry = wWinMainCRTStartup
78
 
}
79
 
 
80
 
conditional_include "vcpartialmacros"
 
5
conditional_include "vc1xexe"
81
6
conditional_include "user_vc10exe"