summaryrefslogtreecommitdiff
path: root/DAnCE/tools/Artifact_Installation/Artifact_Installation.mpc
blob: 37267a6ef342fc74804f8385ce8c61b7876cf39a (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
// -*- MPC -*-
project (DAnCE_Artifact_Installation_IDL) : install, danceidldefaults {
  custom_only = 1
  IDL_Files {
    idlflags += -SS -Sci
    DAnCE_Artifact_Installation_Handler.idl
  }

  specific {
    install_dir = tools/Artifact_Installation
  }
}

project (DAnCE_Artifact_Installation) : install, dance_lib, dynamicinterface, \
            dance_deployment_stub, dance_logger, dance_skel, utils {
  dynamicflags += DANCE_ARTIFACT_INSTALLATION_BUILD_DLL
  sharedname = DAnCE_Artifact_Installation
  after += DAnCE_Artifact_Installation_IDL

  Source_Files {
    DAnCE_Artifact_Installation_HandlerC.cpp
    DAnCE_Artifact_Installation_Handler.cpp
    Artifact_Installation_Impl.cpp
    Artifact_Installation_Handler_Svc.cpp
    Installation_Repository_Manager.cpp
  }
  Template_Files {
  }
  IDL_Files {
  }

  specific {
    install_dir = tools/Artifact_Installation
  }
}

project (DAnCE_Installation_Repository_Manager) : install, dance_lib, dynamicinterface, dance_artifact_installation, \
            dance_logger, utils {
  dynamicflags += INSTALLATION_REPOSITORY_MANAGER_BUILD_DLL
  sharedname = DAnCE_Installation_Repository_Manager

  Source_Files {
    Installation_Repository_Manager_Impl.cpp
  }
  Template_Files {
  }
  IDL_Files {
  }

  specific {
    install_dir = tools/Artifact_Installation
  }
}

project (DAnCE_File_Installation) : install, dance_lib, dynamicinterface, dance_artifact_installation, \
            dance_logger, utils {
  dynamicflags += ARTIFACT_INSTALLATION_HANDLER_BUILD_DLL
  sharedname = DAnCE_File_Installation

  Source_Files {
    File_Installation_Handler.cpp
  }
  Template_Files {
  }
  IDL_Files {
  }

  specific {
    install_dir = tools/Artifact_Installation
  }
}

project (DAnCE_Http_Installation) : install, dance_lib, dynamicinterface, dance_artifact_installation, \
            dance_logger, utils, inet {
  dynamicflags += ARTIFACT_INSTALLATION_HANDLER_BUILD_DLL
  sharedname = DAnCE_Http_Installation

  Source_Files {
    Http_Installation_Handler.cpp
  }
  Template_Files {
  }
  IDL_Files {
  }

  specific {
    install_dir = tools/Artifact_Installation
  }
}

project (DAnCE_Artifact_Installation_Exec) : install, dance_exe, dance_output, dance_artifact_installation, \
        dance_installation_handlers, dance_installation_repository_manager, \
        avoids_ace_for_tao, dance_convert_plan, dance_logger {
  exename = dance_artifact_installation

  Source_Files {
    Artifact_Installation_exec.cpp
  }
  Template_Files {
  }
  IDL_Files {
  }

  specific {
    install_dir = tools/Artifact_Installation
  }
}