summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/PSS/oldmpc_pss
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/examples/PSS/oldmpc_pss')
-rw-r--r--TAO/orbsvcs/examples/PSS/oldmpc_pss44
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/orbsvcs/examples/PSS/oldmpc_pss b/TAO/orbsvcs/examples/PSS/oldmpc_pss
new file mode 100644
index 00000000000..c47c4b1992d
--- /dev/null
+++ b/TAO/orbsvcs/examples/PSS/oldmpc_pss
@@ -0,0 +1,44 @@
+project(*Simple_Naming) : orbsvcslib, portableserver, psdl {
+ source_files {
+ Simple_NamingC.cpp
+ Simple_NamingS.cpp
+ Simple_Naming_i.cpp
+ Simple_Naming.cpp
+ }
+ idl_files {
+ Simple_Naming.idl
+ }
+}
+
+project(*Server) : orbsvcsexe, portableserver, psdl {
+ after += *Simple_Naming
+ source_files {
+ ServerC.cpp
+ ServerS.cpp
+ Server_i.cpp
+ Simple_NamingS.cpp
+ Simple_NamingC.cpp
+ Simple_Naming_i.cpp
+ server.cpp
+ }
+ idl_files {
+ Server.idl
+ Simple_Naming.idl
+ }
+}
+
+project(*Client) : orbsvcsexe, psdl, portableserver {
+ after += *Server
+ source_files {
+ Simple_NamingS.cpp
+ Simple_NamingC.cpp
+ Simple_Naming_i.cpp
+ ServerC.cpp
+ client.cpp
+ }
+ idl_files {
+ Server.idl
+ Simple_Naming.idl
+ }
+}
+