summaryrefslogtreecommitdiff
path: root/examples/APG/Svc_Config/svc_config.mpc
blob: ddc33b97c538bcba59318b58a2773e45a4c68002 (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
// -*- MPC -*-
// $Id$

project(*HA Status) : acelib {
  avoids       += ace_for_tao
  sharedname   = HA_Status
  dynamicflags = HASTATUS_BUILD_DLL
  Source_Files {
    HA_Status_Dynamic.cpp
  }
}

project(HA Configurable Server Dynamic) : aceexe {
  avoids += ace_for_tao
  exename = HA_Configurable_Server_Dynamic
  Source_Files {
    HA_Configurable_Server_Dynamic.cpp
  }
}

project(HA Configurable Server Static) : aceexe {
  avoids += ace_for_tao
  exename = HA_Configurable_Server_Static
  Source_Files {
    HA_Configurable_Server_Static.cpp
    HA_Status_Static.cpp
  }
}