summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2005-07-29 03:53:15 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2005-07-29 03:53:15 +0000
commitcc8966d7ef12aedde220d71ecb4a3f16d1c0bc35 (patch)
treed4d70099ae7b400882eeef819754f5b1831450ea
parent8a6dde7e4fb234ee6dfe2e31c681ab62ab97f42e (diff)
downloadATCD-cc8966d7ef12aedde220d71ecb4a3f16d1c0bc35.tar.gz
Fri Jul 29 03:52:11 2005 William Otte <wotte@dre.vanderbilt.edu>
-rw-r--r--TAO/CIAO/ChangeLog7
-rw-r--r--TAO/CIAO/DAnCE/Plan_Launcher/Plan_Launcher.mpc24
2 files changed, 27 insertions, 4 deletions
diff --git a/TAO/CIAO/ChangeLog b/TAO/CIAO/ChangeLog
index c3a387fa132..e3e33f6adaa 100644
--- a/TAO/CIAO/ChangeLog
+++ b/TAO/CIAO/ChangeLog
@@ -1,3 +1,10 @@
+Fri Jul 29 03:52:11 2005 William Otte <wotte@dre.vanderbilt.edu>
+
+ * DAnCE/Plan_Launcher/Plan_Launcher.mpc
+
+ Made is such that Plan_Launcher_Impl library gets generated
+ and installed.
+
Wed Jul 28 15:18:14 2005 Ming Xiong <mxiong@dre.vanderbilt.edu>
* docs\schema\Modified_Deployment.xsd
diff --git a/TAO/CIAO/DAnCE/Plan_Launcher/Plan_Launcher.mpc b/TAO/CIAO/DAnCE/Plan_Launcher/Plan_Launcher.mpc
index fd9592b471b..e8eb5719b1b 100644
--- a/TAO/CIAO/DAnCE/Plan_Launcher/Plan_Launcher.mpc
+++ b/TAO/CIAO/DAnCE/Plan_Launcher/Plan_Launcher.mpc
@@ -1,17 +1,33 @@
// -*- MPC -*-
// $Id$
-project(Plan_Launcher): naming, ciao_server_dnc, xerces, taoexe {
- exename = plan_launcher
+project(Plan_Launcher_Impl) : naming, ciao_server_dnc, xerces {
+
+ sharedname = Plan_Launcher_Impl
requires += exceptions
after += XSC_Config_Handlers ExecutionManager_stub NodeDaemon_stub
libs += XSC_Config_Handlers
libs += ExecutionManager_stub
after += XSC_Config_Handlers
-
+
+ dynamicflags = PLAN_LAUNCHER_IMPL_BUILD_DLL
+
Source_Files {
- Plan_Launcher.cpp
Plan_Launcher_Impl.cpp
DAM_Map.cpp
}
}
+
+project(Plan_Launcher) : ciao_server_dnc, taoexe {
+ exename = plan_launcher
+
+
+ after += XSC_Config_Handlers ExecutionManager_stub NodeDaemon_stub
+ libs += XSC_Config_Handlers Plan_Launcher_Impl
+ libs += ExecutionManager_stub
+ after += XSC_Config_Handlers Plan_Launcher_Impl
+
+ Source_Files {
+ Plan_Launcher.cpp
+ }
+}