summaryrefslogtreecommitdiff
path: root/TAO/tests/GIOP_Fragments/Java_Big_Request/Java_Big_Request.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/GIOP_Fragments/Java_Big_Request/Java_Big_Request.mpc')
-rw-r--r--TAO/tests/GIOP_Fragments/Java_Big_Request/Java_Big_Request.mpc45
1 files changed, 45 insertions, 0 deletions
diff --git a/TAO/tests/GIOP_Fragments/Java_Big_Request/Java_Big_Request.mpc b/TAO/tests/GIOP_Fragments/Java_Big_Request/Java_Big_Request.mpc
new file mode 100644
index 00000000000..3c081fa6da4
--- /dev/null
+++ b/TAO/tests/GIOP_Fragments/Java_Big_Request/Java_Big_Request.mpc
@@ -0,0 +1,45 @@
+// -*- MPC -*-
+// $Id$
+
+project(*IDL) {
+ requires += java
+
+ // Define the Java IDL with a hack output extension
+ // Since our idl file has a module, the generated java files
+ // will go int the module name so we set the extension to /
+ Define_Custom(JAVA_IDL) {
+ command = idlj
+ inputext = .idl
+ generic_outputext = /
+ }
+
+ // Make sure we don't get any of the defaults
+ Source_Files {
+ }
+ Inline_Files {
+ }
+ Header_Files {
+ }
+
+ JAVA_IDL_Files {
+ // The idlj will automatically put the generated files
+ // in the Test directory
+ gendir = Test
+
+ Test.idl
+ }
+}
+
+// This project will build the java server and C++ client
+project(Java_Big_Request): taoexe, portableserver {
+ requires += java
+ after += *IDL
+
+ // Define the java type
+ Define_Custom(JAVA) {
+ command = javac
+ commandflags = -d .
+ inputext = .java
+ generic_outputext = .class
+ }
+}