summaryrefslogtreecommitdiff
path: root/DAnCE/dance/DAnCE_Core.mpc
blob: 5a73611c1814d2fefa27fde35de2f5a5c427c1b2 (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
// $Id$

project(DAnCE_IDL) : dancelib_with_idl, dance_output, valuetype, gen_ostream, \
      dance_deployment_stub, install {
  custom_only = 1
  idlflags     += -Wb,stub_export_macro=DANCE_STUB_Export \
                  -Wb,stub_export_include=DAnCE_stub_export.h \
                  -Wb,skel_export_macro=DANCE_SKEL_Export \
                  -Wb,skel_export_include=DAnCE_skel_export.h

  IDL_Files {
    idlflags += -SS -Sci
    DAnCE_DeploymentInterceptors.idl
    DAnCE_Properties.idl
  }

  IDL_Files {
    idlflags += -Gxhst -Gxhsk
    DAnCE_LocalityManager.idl
  }

  IDL_Files {
    DAnCE_ArtifactInstallation.idl
  }
}

project (DAnCE_stub) : dancelib_with_idl, dance_output, \
         dance_applicationmanager_stub, dance_deployment_stub, \
	 dance_logger, install \
{
  after += DAnCE_IDL
  dynamicflags += DANCE_STUB_BUILD_DLL
  IDL_Files {
  }

  Source_Files {
    DAnCE_DeploymentInterceptorsC.cpp
    DAnCE_PropertiesC.cpp
    DAnCE_LocalityManagerC.cpp
    DAnCE_ArtifactInstallationC.cpp
    DAnCE_Utility.cpp
    DAnCE_DeploymentInterceptors_Base_Impl.cpp
  }

  Inline_Files {
    DAnCE_LocalityManagerC.inl
    DAnCE_ArtifactInstallationC.inl
  }

  Header_Files {
    DAnCE_Utility.h
    DAnCE_stub_export.h
    DAnCE_DeploymentInterceptorsC.h
    DAnCE_PropertiesC.h
    DAnCE_LocalityManagerC.h
    DAnCE_ArtifactInstallationC.h
    Version.h
  }

  Template_Files {
    DAnCE_Utility.tpp
  }

  InstallData_Files {
    gendir = bin
    ../bin/ciao.localityconfig
    ../bin/nodemanager.localityconfig
  }
}

project (DAnCE_skel) : dancelib_with_idl, dance_output, dance_stub, \
         dance_applicationmanager_skel, dance_deployment_skel, install   \
{
  dynamicflags += DANCE_SKEL_BUILD_DLL
  IDL_Files {
  }

  Source_Files {
    DAnCE_LocalityManagerS.cpp
    DAnCE_ArtifactInstallationS.cpp
  }

  Inline_Files {
  }

  Header_Files {
    DAnCE_LocalityManagerS.h
    DAnCE_ArtifactInstallationS.h
    DAnCE_skel_export.h
  }
}