summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/CosConcurrency.mpc
blob: f22d6d231607eb43db1b2cffd52bf72bb23466d5 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// -*- MPC -*-
// $Id$

project(CosConcurrency_IDL): orbsvcslib, orbsvcs_output, install, tao_versioning_idl_defaults {
  custom_only = 1
  idlflags   += -Wb,stub_export_macro=TAO_Concurrency_Export -Wb,stub_export_include=orbsvcs/Concurrency/concurrency_export.h -Wb,skel_export_macro=TAO_Concurrency_Skel_Export -Wb,skel_export_include=orbsvcs/Concurrency/concurrency_skel_export.h

  IDL_Files {
    CosConcurrencyControl.idl
  }
}

project(CosConcurrency) : orbsvcslib, orbsvcs_output, install {
  sharedname   = TAO_CosConcurrency
  dynamicflags += TAO_CONCURRENCY_BUILD_DLL
  tagchecks   += Concurrency
  after       += CosConcurrency_IDL

  IDL_Files {
  }

  Source_Files {
    CosConcurrencyControlC.cpp
  }

  Header_Files {
    CosConcurrencyControlC.h
    Concurrency/concurrency_export.h
  }

  Inline_Files {
    CosConcurrencyControlC.inl
  }

  Template_Files {
  }

  // explicit Resource_Files to avoid including _Skel & _Serv rc files.
  Resource_Files {
  }

  Pkgconfig_Files {
    TAO_CosConcurrency.pc.in
  }
}

project(CosConcurrency_Skel): orbsvcslib, orbsvcs_output, install, concurrency, portableserver {
  sharedname   = TAO_CosConcurrency_Skel
  dynamicflags += TAO_CONCURRENCY_SKEL_BUILD_DLL
  tagchecks   += Concurrency
  after       += CosConcurrency_IDL

  IDL_Files {
  }

  Source_Files {
    CosConcurrencyControlS.cpp
  }

  Header_Files {
    CosConcurrencyControlS.h
    Concurrency/concurrency_skel_export.h
  }

  Inline_Files {
  }

  Template_Files {
  }

  Pkgconfig_Files {
    TAO_CosConcurrency_Skel.pc.in
  }
}

project(CosConcurrency_Serv) : orbsvcslib, orbsvcs_output, install, concurrency_skel, avoids_corba_e_micro {
  sharedname   = TAO_CosConcurrency_Serv
  dynamicflags += TAO_CONCURRENCY_SERV_BUILD_DLL
  tagchecks   += Concurrency

  IDL_Files {
  }

  Source_Files {
    Concurrency
  }

  Header_Files {
    // We want all the headers in the Concurrency subdirectory, except
    // concurrency_export.h and concurrency_skel_export.h, since those
    // are bundled in the stub and skeleton projects.
    Concurrency
    ^Concurrency/concurrency_export.h
    ^Concurrency/concurrency_skel_export.h
  }

  Inline_Files {
    Concurrency
  }

  Template_Files {
    Concurrency
  }

  Pkgconfig_Files {
    TAO_CosConcurrency_Serv.pc.in
  }
}