Subversion Repositories gelsvn

Rev

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

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