summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Simple/Simple.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Simple/Simple.mpc')
-rw-r--r--TAO/tests/NestedUpcall/Simple/Simple.mpc34
1 files changed, 34 insertions, 0 deletions
diff --git a/TAO/tests/NestedUpcall/Simple/Simple.mpc b/TAO/tests/NestedUpcall/Simple/Simple.mpc
new file mode 100644
index 00000000000..fa21574183c
--- /dev/null
+++ b/TAO/tests/NestedUpcall/Simple/Simple.mpc
@@ -0,0 +1,34 @@
+// -*- MPC -*-
+// $Id$
+
+project(*Nested_Upcall_Idl): taoidldefaults {
+ IDL_Files {
+ test.idl
+ }
+ custom_only = 1
+}
+
+project(*Nested_Upcall_Server): taoexe, portableserver {
+ after += *Nested_Upcall_Idl
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ server_i.cpp
+ server.cpp
+ }
+ IDL_Files {
+ }
+}
+
+project(*Nested_Upcall_Client): taoexe, portableserver {
+ after += *Nested_Upcall_Idl
+ after += *Nested_Upcall_Server
+ Source_Files {
+ testC.cpp
+ testS.cpp
+ client_i.cpp
+ client.cpp
+ }
+ IDL_Files {
+ }
+}