Subversion Repositories gelsvn

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 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
13
  runtime_library  = 0
14
}
15
 
16
Debug {
17
  optimize         =
18
  defines          = _DEBUG
19
  intermediate_dir = Debug
20
  lib_modifier     = d
21
  runtime_library  = 1
22
  pdbc             = 1
23
}
24
 
25
Install {
26
  optimize         = 3
27
  defines          = NDEBUG
28
  libout           = $(GELEXT)\lib\windows
29
  intermediate_dir = Install
30
  runtime_library  = 0
31
  postbuild = xcopy /Y *.h $(GELEXT)include\$(ProjectName)\
32
 
33
}
34
 
35
conditional_include "vcpartialmacros"