Subversion Repositories gelsvn

Rev

Rev 266 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 266 Rev 276
Line 1... Line 1...
1
// -*- MPC -*-
1
// -*- MPC -*-
2
// $Id: vc8lib.mpt,v 1.3 2005/10/06 21:52:57 shuston Exp $
2
// $Id: vc8lib.mpt,v 1.3 2005/10/06 21:52:57 shuston Exp $
3
 
3
 
4
conditional_include "common"
4
conditional_include "common"
5
conditional_include "windowscommon"
5
conditional_include "windowscommon"
6
 
6
 
7
configurations     = Debug Release Install Install_Debug
7
configurations     = Debug Release Install Install_Debug
8
common_defines     = WIN32 _WINDOWS 
8
common_defines     = WIN32 _WINDOWS 
9
ConfigurationType  = 4
9
ConfigurationType  = 4
10
use_lib_modifier   = 1
10
use_lib_modifier   = 1
11
Detect64BitPortabilityProblems = false
11
Detect64BitPortabilityProblems = false
12
MinimalRebuild     = false
12
MinimalRebuild     = false
13
DisableSpecificWarnings = 4996
13
DisableSpecificWarnings = 4996
14
 
14
 
15
conditional_include "vc8platforms"
15
conditional_include "vc8platforms"
16
 
16
 
17
Release {
17
Release {
18
  optimize         = 2
18
  optimize         = 2
19
  defines          = NDEBUG
19
  defines          = NDEBUG _SECURE_SCL=0
20
  intermediate_dir = Release
20
  intermediate_dir = Release
21
  runtime_library   = 0
21
  runtime_library   = 0
22
}
22
}
23
 
23
 
24
Debug {
24
Debug {
25
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
25
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
26
  intermediate_dir = Debug
26
  intermediate_dir = Debug
27
  lib_modifier     = d
27
  lib_modifier     = d
28
  runtime_library   = 1
28
  runtime_library   = 1
29
}
29
}
30
 
30
 
31
Install_Debug {
31
Install_Debug {
32
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
32
  defines          = _DEBUG _HAS_ITERATOR_DEBUGGING=0 _SECURE_SCL=0
33
  intermediate_dir = Install_Debug
33
  intermediate_dir = Install_Debug
34
  lib_modifier     = d
34
  lib_modifier     = d
35
  runtime_library   = 1
35
  runtime_library   = 1
36
  libout       = $(GEL_LIB)
36
  libout       = $(GEL_LIB)
37
  postbuild = xcopy /Y *.h $(GEL_INCLUDE)\$(ProjectName)\
37
  postbuild = xcopy /Y *.h $(GEL_INCLUDE)\$(ProjectName)\
38
}
38
}
39
 
39
 
40
 
40
 
41
Install {
41
Install {
42
  optimize         = 2
42
  optimize         = 2
43
  defines          = NDEBUG
43
  defines          = NDEBUG _SECURE_SCL=0
44
  intermediate_dir = Install
44
  intermediate_dir = Install
45
  runtime_library   = 0
45
  runtime_library   = 0
46
  libout       = $(GEL_LIB)
46
  libout       = $(GEL_LIB)
47
  postbuild = xcopy /Y *.h $(GEL_INCLUDE)\$(ProjectName)\
47
  postbuild = xcopy /Y *.h $(GEL_INCLUDE)\$(ProjectName)\
48
}
48
}
49
 
49
 
50
conditional_include "vcpartialmacros"
50
conditional_include "vcpartialmacros"
51
conditional_include "user_vc8lib"
51
conditional_include "user_vc8lib"