summaryrefslogtreecommitdiff
path: root/ACE/MPC/templates/bmakedllexe.mpt
blob: 0aa0d7eb35f1c1af3366ccc9f921cd1738f69402 (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
44
45
46
47
48
// -*- MPC -*-
// $Id$

conditional_include "bmakecommon"

configurations = Debug Release "Static Debug" "Static Release"
startup_letter = x

Release {
  optimize         = 1
  defines          = NDEBUG
  output_dir       = Release
  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
  postlinkrmext    = .tds
  type_is_static   = 1
}

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

conditional_include "user_bmakedllexe"