summaryrefslogtreecommitdiff
path: root/templates/bmakedll.mpt
blob: 4334d40fb3d9c55f48d83ba011a7b82677eca24f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// -*- MPC -*-
conditional_include "bmakecommon"

configurations = Debug Release "Static Debug" "Static Release"
startup_letter = d

Release {
  optimize         = 1
  defines          = NDEBUG
  intermediate_dir = Release
  lib_modifier     = _br
  postlinkrmext    = .tds
}

Debug {
  optimize         =
  debug_prj        = 1
  defines          = _DEBUG
  intermediate_dir = Debug
  lib_modifier     = _bd
  postlinkrmext    = .tds
}

Static Release {
  optimize         = 1
  defines          = NDEBUG
  output_dir       = Static_Release
  intermediate_dir = Static_Release
  lib_modifier     = _bsr
  type_is_static   = 1
}

Static Debug {
  optimize         =
  debug_prj        = 1
  defines          = _DEBUG
  output_dir       = Static_Debug
  intermediate_dir = Static_Debug
  lib_modifier     = _bsd
  type_is_static   = 1
}

conditional_include "user_bmakedll"