Subversion Repositories gelsvn

Rev

Rev 107 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
// -*- MPC -*-
2
// $Id: vc7libexe.mpt 198 2005-12-15 11:30:53Z bj $
3
 
4
conditional_include "common"
5
conditional_include "windowscommon"
6
 
7
configurations     = Debug Release
8
common_defines     = WIN32 _CONSOLE
9
configuration_type = 1
10
subsystem          = 1
11
use_exe_modifier   =
12
 
13
Release {
198 bj 14
  LinkIncremental  = 1
107 bj 15
  optimize         = 3
16
  defines          = NDEBUG
17
  output_dir       = Static_Release
18
  intermediate_dir = Static_Release
19
  lib_modifier     = s
20
  runtime_library  = 2
21
}
22
 
23
Debug {
24
  optimize         =
25
  defines          = _DEBUG
26
  output_dir       = Static_Debug
27
  intermediate_dir = Static_Debug
28
  lib_modifier     = sd
29
  runtime_library  = 3
30
  pdbl             = 1
31
  pdbc             = 1
32
}
33
 
34
MFC Release {
198 bj 35
  LinkIncremental  = 1
107 bj 36
  optimize          = 3
37
  defines           = NDEBUG _AFXDLL
38
  output_dir        = Static_MFC_Release
39
  intermediate_dir  = Static_MFC_Release
40
  lib_modifier      = mfcs
41
  runtime_library   = 2
42
  use_mfc           = 2
43
  unicode_mfc_entry = wWinMainCRTStartup
44
}
45
 
46
MFC Debug {
47
  optimize          =
48
  defines           = _DEBUG _AFXDLL
49
  output_dir        = Static_MFC_Debug
50
  intermediate_dir  = Static_MFC_Debug
51
  lib_modifier      = mfcsd
52
  runtime_library   = 3
53
  pdbl              = 1
54
  pdbc              = 1
55
  use_mfc           = 2
56
  unicode_mfc_entry = wWinMainCRTStartup
57
}
58
 
59
conditional_include "vcpartialmacros"
60
conditional_include "user_vc7libexe"