Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
76 bj 1
conditional_include "common"
2
conditional_include "windowscommon"
3
 
4
configurations     = Release Debug Install
5
common_defines     = WIN32 _WINDOWS
6
configuration_type = 1
7
subsystem = 1
8
ignore_default_library_names = 1 
94 bj 9
use_exe_modifier   = 1
10
 
76 bj 11
 
12
Release {
13
  optimize         = 3
14
  defines          = NDEBUG
15
  intermediate_dir = Release
16
  runtime_library  = 0
17
  ignore_default_library_name = LIBC; LIBCD
94 bj 18
 install = ../../bin
76 bj 19
 
20
}
21
 
22
Debug {
23
  optimize         =
24
  defines          = _DEBUG
25
  intermediate_dir = Debug
26
  pdbc             = 1
27
  runtime_library  = 1
28
  lib_modifier     = d
29
  ignore_default_library_name = LIBCD
94 bj 30
    install = ../../bin
76 bj 31
}
32
 
33
Install {
34
  optimize         = 3
35
  defines          = NDEBUG
36
  install           = $(GELEXT)\bin
37
  intermediate_dir = Install
38
  runtime_library  = 0
39
  ignore_default_library_name = LIBC; LIBCD
40
//  postbuild = call runme.bat
41
}
42
 
43
conditional_include "vcpartialmacros"