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: em3vcplibexe.mpt 107 2005-09-02 16:42:23Z bj $
3
 
4
conditional_include "common"
5
conditional_include "windowscommon"
6
 
7
type_description      = Application
8
platforms             = "WCE ARM" "WCE ARMV4" "WCE emulator" "WCE x86"
9
default_configuration = Debug
10
default_platform      = "WCE ARM"
11
configurations        = Debug Release
12
common_defines        = UNICODE _UNICODE
13
use_exe_modifier      =
14
unicode               = 1
15
 
16
WCE x86 {
17
  type_code   = 0x8301
18
  cpu_id      = D6518FF3-710F-11D3-99F2-00105A0DF099
19
  platform_id = 8A9A2F80-6887-11D3-842E-005004848CBA
20
  machine     = IX86
21
  cpu_defines = _i386_ _X86_ x86
22
}
23
 
24
WCE emulator {
25
  type_code   = 0xa601
26
  cpu_id      = D6518FF3-710F-11D3-99F2-00105A0DF099
27
  platform_id = 8A9A2F80-6887-11D3-842E-005004848CBA
28
  machine     = IX86
29
  cpu_defines = _i386_ _X86_ x86
30
}
31
 
32
WCE ARM {
33
  type_code   = 0x8501
34
  cpu_id      = D6518FFC-710F-11D3-99F2-00105A0DF099
35
  platform_id = 8A9A2F80-6887-11D3-842E-005004848CBA
36
  machine     = ARM
37
  cpp         = clarm.exe
38
  cpu_defines = ARM _ARM_
39
}
40
 
41
WCE ARMV4 {
42
  type_code   = 0xa301
43
  cpu_id      = D6518FF3-710F-11D3-99F2-00105A0DF099
44
  platform_id = 8A9A2F80-6887-11D3-842E-005004848CBA
45
  machine     = ARM
46
  cpp         = clarm.exe
47
  cpu_defines = ARM _ARM_ ARMV4
48
  cpu_options = /QRxscale
49
}
50
 
51
Release {
52
  use_debug_libraries   = 0
53
  optimize              = 1
54
  compile_flags         = /W3 /GR
55
  defines               = NDEBUG
56
  compile_flags_removed = /YX
57
  lib_modifier          = s
58
  output_dir            = Static_Release
59
  intermediate_dir      = Static_Release
60
}
61
 
62
Debug {
63
  use_debug_libraries   = 1
64
  optimize              =
65
  compile_flags         = /W3 /Gm /Zi /GR /Gy
66
  defines               = _DEBUG
67
  compile_flags_removed = /YX
68
  lib_modifier          = sd
69
  output_dir            = Static_Debug
70
  intermediate_dir      = Static_Debug
71
  pdbl                  = 1
72
  pdbc                  = 1
73
}
74
 
75
MFC Release {
76
  use_debug_libraries   = 0
77
  optimize              = 1
78
  compile_flags         = /W3 /GR
79
  defines               = NDEBUG _AFXDLL
80
  compile_flags_removed = /YX
81
  lib_modifier          = mfcs
82
  output_dir            = Static_MFC_Release
83
  intermediate_dir      = Static_MFC_Release
84
  use_mfc               = 2
85
  unicode_mfc_entry     = wWinMainCRTStartup
86
}
87
 
88
MFC Debug {
89
  use_debug_libraries   = 1
90
  optimize              =
91
  compile_flags         = /W3 /Gm /Zi /GR /Gy
92
  defines               = _DEBUG _AFXDLL
93
  compile_flags_removed = /YX
94
  lib_modifier          = mfcsd
95
  output_dir            = Static_MFC_Debug
96
  intermediate_dir      = Static_MFC_Debug
97
  pdbl                  = 1
98
  pdbc                  = 1
99
  use_mfc               = 2
100
  unicode_mfc_entry     = wWinMainCRTStartup
101
}
102
 
103
conditional_include "vcpartialmacros"
104
conditional_include "user_em3vcplibexe"
105