summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3499_Regression/DLL_Service.mpc
blob: 3475913c0d2b0b1eea2ad68a71edbd6836a15782 (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
// $Id$

project (Bug_3499_Regression) : aceexe {
  exename = Bug_3499_Regression
  Source_Files {
    DLL_Service_Host.cpp
  }
}

project (Bug_3499_Regression_ACE_DLL_Service) : acelib {
  sharedname = Bug_3499_Regression_ACE_DLL_Service
  dynamicflags += ACE_DLL_SERVICE_BUILD_DLL
  dllout = .
  libout = .
  Source_Files {
    DLL_Service.cpp
  }
  Header_Files {
    DLL_Service_export.h
  }
  Inline_Files {

  }
}

project (Bug3499Reg_ACE_DLL_TAO_Service) : portableserver, taolib {
  sharedname = Bug_3499_Regression_ACE_DLL_TAO_Service

  dynamicflags += ACE_DLL_TAO_SERVICE_BUILD_DLL

  after += Bug_3499_Regression_ACE_DLL_Service
  libs  += Bug_3499_Regression_ACE_DLL_Service

  dllout = .
  libout = .

  Source_Files {
    DLL_TAO_Service.cpp
  }

  Header_Files {
    DLL_TAO_Service_export.h
  }
}