Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
// -*- MPC -*-
2
// $Id: vc7exe.mpt 107 2005-09-02 16:42:23Z 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 {
14
  optimize         = 3
15
  defines          = NDEBUG
16
  output_dir       = Release
17
  intermediate_dir = Release
18
  runtime_library  = 2
19
}
20
 
21
Debug {
22
  optimize         =
23
  defines          = _DEBUG
24
  output_dir       = .
25
  intermediate_dir = Debug
26
  lib_modifier     = d
27
  runtime_library  = 3
28
  pdbl             = 1
29
  pdbc             = 1
30
}
31
 
32
MFC Release {
33
  optimize          = 3
34
  common_defines    = WIN32 _WINDOWS
35
  defines           = NDEBUG _AFXDLL
36
  output_dir        = MFC_Release
37
  intermediate_dir  = MFC_Release
38
  lib_modifier      = mfc
39
  runtime_library   = 2
40
  use_mfc           = 2
41
  unicode_mfc_entry = wWinMainCRTStartup
42
}
43
 
44
MFC Debug {
45
  optimize          =
46
  common_defines    = WIN32 _WINDOWS
47
  defines           = _DEBUG _AFXDLL
48
  output_dir        = MFC_Debug
49
  intermediate_dir  = MFC_Debug
50
  lib_modifier      = mfcd
51
  runtime_library   = 3
52
  pdbl              = 1
53
  pdbc              = 1
54
  use_mfc           = 2
55
  unicode_mfc_entry = wWinMainCRTStartup
56
 
57
}
58
 
59
conditional_include "vcpartialmacros"
60
conditional_include "user_vc7exe"