summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/ORB_Local_Config/Service_Dependency/Service_Dependency.mpc
blob: d4c4107ac833386344096db2369ae13a34257530 (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
// -*- MPC -*-
// $Id$

project(*) : taoserver {
  after += Service_Config_Dependent_DLL TAO
  exename = Test

  specific (automake) {
    includes += $(srcdir)/../lib
  } else {
    includes += ../lib
  }

  Source_Files {
    Test.cpp
  }
}

project(Service Config Dependent DLL) : acelib {
  sharedname   = Service_Config_Dependent_DLL
  dynamicflags = SERVICE_CONFIG_DLL_BUILD_DLL

  specific (automake) {
    includes += $(srcdir)/../lib
  } else {
    includes += ../lib
  }

  Source_Files {
    Service_Config_DLL.cpp
  }
  Header_Files {
    Service_Config_DLL.h
    Service_Config_DLL_Export.h
  }
}