summaryrefslogtreecommitdiff
path: root/TAO/examples/Quoter
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-07-30 13:23:07 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-07-30 13:23:07 +0000
commit3172e683fad186229a32d60deb50a8e90cd10d5c (patch)
tree412b51ffac1feddfc8fa54b6f0ea8dea1db2aa21 /TAO/examples/Quoter
parente005f45665095f1fb4f6ab209a807dde9eaae770 (diff)
downloadATCD-3172e683fad186229a32d60deb50a8e90cd10d5c.tar.gz
ChangeLogTag: Tue Jul 30 08:21:36 2002 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/examples/Quoter')
-rw-r--r--TAO/examples/Quoter/Quoter.mpc50
1 files changed, 50 insertions, 0 deletions
diff --git a/TAO/examples/Quoter/Quoter.mpc b/TAO/examples/Quoter/Quoter.mpc
new file mode 100644
index 00000000000..24b184b267c
--- /dev/null
+++ b/TAO/examples/Quoter/Quoter.mpc
@@ -0,0 +1,50 @@
+project: namingexe {
+ libs += TAO_CosLifeCycle
+ depends += CosLifeCycle
+ idlflags += -I$(TAO_ROOT)/orbsvcs/orbsvcs
+ includes += $(TAO_ROOT)/orbsvcs/orbsvcs
+
+ Source_Files {
+ server.cpp
+ Quoter_i.cpp
+ }
+}
+
+project(client): namingexe {
+ libs += TAO_CosLifeCycle
+ depends += CosLifeCycle
+ idlflags += -I$(TAO_ROOT)/orbsvcs/orbsvcs
+ includes += $(TAO_ROOT)/orbsvcs/orbsvcs
+ exename = client
+
+ Source_Files {
+ client.cpp
+ }
+}
+
+project(Factory Finder): namingexe {
+ libs += TAO_CosLifeCycle
+ depends += CosLifeCycle
+ idlflags += -I$(TAO_ROOT)/orbsvcs/orbsvcs
+ includes += $(TAO_ROOT)/orbsvcs/orbsvcs
+ exename = Factory_Finder
+
+ Source_Files {
+ Factory_Finder.cpp
+ Factory_Finder_i.cpp
+ }
+}
+
+project(Generic Factory): namingexe {
+ libs += TAO_CosLifeCycle
+ depends += CosLifeCycle
+ idlflags += -I$(TAO_ROOT)/orbsvcs/orbsvcs
+ includes += $(TAO_ROOT)/orbsvcs/orbsvcs
+ exename = Generic_Factory
+
+ Source_Files {
+ Generic_Factory.cpp
+ Generic_Factory_i.cpp
+ }
+}
+