Subversion Repositories gelsvn

Rev

Rev 72 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
68 bj 1
conditional_include "common"
2
conditional_include "windowscommon"
3
 
4
configurations     = Release Debug Install
5
common_defines     = WIN32 _WINDOWS
6
configuration_type = 4
7
use_lib_modifier   = 1
8
 
9
Release {
10
  optimize         = 3
11
  defines          = NDEBUG
12
  intermediate_dir = Release
72 bj 13
  runtime_library  = 0
68 bj 14
}
15
 
16
Debug {
17
  optimize         =
18
  defines          = _DEBUG
19
  intermediate_dir = Debug
20
  lib_modifier     = d
72 bj 21
  runtime_library  = 1
68 bj 22
  pdbc             = 1
23
}
24
 
25
Install {
26
  optimize         = 3
27
  defines          = NDEBUG
28
  libout           = $(GELEXT)\lib\windows
29
  intermediate_dir = Install
72 bj 30
  runtime_library  = 0
74 bj 31
  postbuild = xcopy /Y *.h $(GELEXT)include\$(ProjectName)\
32
 
68 bj 33
}
34
 
35
conditional_include "vcpartialmacros"