summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/Config_Handlers/Config_Handlers.mpc
blob: 942730618e88bf5ddb881e5e7e78855a44596b42 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
//$Id$

project (XSC_XML_Generation) : xscdefaults {
  requires += xsc

  xscflags += --cxx-banner-file $(DANCE_ROOT)/docs/schema/xsc-banner.cpp
  xscflags += --cxx-header-banner-file $(DANCE_ROOT)/docs/schema/xsc-banner.h
  xscflags += --cxx-export-symbol XSC_XML_Handlers_Export
  xscflags += --cxx-namespace-regex  "%.*Deployment.*%CIAO/Config_Handlers%" //<%quote%>
  xscflags += --cxx-export-header XSC_XML_Handlers_Export.h
  xscflags += --search-path "$(DANCE_ROOT)/docs/schema"

  custom_only = 1

  XSC_Files {
    gendir = .
    $(CIAO_ROOT)/docs/schema/Basic_Deployment_Data.xsd
    $(CIAO_ROOT)/docs/schema/Deployment.xsd
    $(CIAO_ROOT)/docs/schema/XMI.xsd
    $(CIAO_ROOT)/docs/schema/ccd.xsd
    $(CIAO_ROOT)/docs/schema/cdd.xsd
    $(CIAO_ROOT)/docs/schema/cdp.xsd
    $(CIAO_ROOT)/docs/schema/cid.xsd
    $(CIAO_ROOT)/docs/schema/cpd.xsd
    $(CIAO_ROOT)/docs/schema/iad.xsd
    $(CIAO_ROOT)/docs/schema/pcd.xsd
    $(CIAO_ROOT)/docs/schema/toplevel.xsd
  }

  Source_Files {
  }
}

project (XSC_XML_Handlers) : acelib, xerces, ciao_lib, ciao_xml_utils {
  sharedname    += XSC_XML_Handlers
  dynamicflags  = XSC_XML_HANDLERS_BUILD_DLL
  macros       += XML_USE_PTHREADS
  includes += $(DANCE_ROOT)/Config_Handlers $(CIAO_ROOT)/tools
  after += XSC_XML_Generation

  Source_Files {
    XMI.cpp
    Deployment.cpp
    ccd.cpp
    cdd.cpp
    cdp.cpp
    cid.cpp
    cpd.cpp
    iad.cpp
    pcd.cpp
    toplevel.cpp
    Basic_Deployment_Data.cpp
    XML_Typedefs.cpp
  }

  Header_Files {
    XSC_XML_Handlers_Export.h
    XML_Typedefs.h
  }

  verbatim(gnuace, macros) {
    override no_hidden_visibility = 1
  }

}

project (XSC_Config_Handlers) : dance_deployment_stub, ciao_config_handlers_base, ciao_lib, dance, dance_logger {
  after += XSC_DynAny_Handler \
           XSC_Config_Handlers_Common

  sharedname = XSC_Config_Handlers
  dynamicflags   = CONFIG_HANDLERS_BUILD_DLL
  libs += CIAO_XML_Utils \
          XSC_XML_Handlers \
          XSC_DynAny_Handler \
          XSC_Config_Handlers_Common

  Source_Files {
    DP_Handler.cpp
    CCD_Handler.cpp
    ComponentPropertyDescription_Handler.cpp
    MDD_Handler.cpp
    ComponentPropertyDescription_Handler.cpp
    MDD_Handler.cpp
    PSPE_Handler.cpp
    CRDD_Handler.cpp
    IDD_Handler.cpp
    ADD_Handler.cpp
    ComponentPropertyDescription_Handler.cpp
    RDD_Handler.cpp
    ID_Handler.cpp
    PL_Handler.cpp
    XML_File_Intf.cpp
    IDREF_Base.cpp
    Dump_Obj.cpp
    PCD_Handler.cpp
    IRDD_Handler.cpp
    DD_Handler.cpp
    DnC_Dump.cpp
  }

  Header_Files {
    Config_Handlers_Export.h
  }

}

project (XSC_Config_Handlers_Common) : dance_deployment_stub, ciao_config_handlers_base, ciao_lib, dance {
  after += XSC_DynAny_Handler
  sharedname = XSC_Config_Handlers_Common
  dynamicflags = CONFIG_HANDLERS_COMMON_BUILD_DLL

  libs += XSC_DynAny_Handler

  Source_Files {
    ERE_Handler.cpp
    Req_Handler.cpp
    DataType_Handler.cpp
    Property_Handler.cpp
    SatisfierProperty_Handler.cpp
    CPD_Handler.cpp
    CEPE_Handler.cpp
    Any_Handler.cpp
  }
}