Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / GIOP_Fragments / Java_Big_Reply / Java_Big_Reply.mpc
blobf95c7c66a4d9c622e52db40d8bf45d9b86ad4b6e
1 // -*- MPC -*-
2 project(*IDL) {
3   requires += java
5   // Define the Java IDL with a hack output extension
6   // Since our idl file has a module, the generated java files
7   // will go int the module name so we set the extension to /
8   Define_Custom(JAVA_IDL) {
9     command           = idlj
10     inputext          = .idl
11     generic_outputext = /
12   }
14   // Make sure we don't get any of the defaults
15   Source_Files {
16   }
17   Inline_Files {
18   }
19   Header_Files {
20   }
22   JAVA_IDL_Files {
23     // The idlj will automatically put the generated files
24     // in the Test directory
25     gendir = Test
27     // We want both server and client side
28     commandflags += -fall
30     Test.idl
31   }
34 // This project will build the java server and C++ client
35 project(Java_Big_Reply): taoexe, portableserver {
36   requires += java
37   after    += *IDL
39   // Define the java type
40   Define_Custom(JAVA) {
41     command           = javac
42     commandflags      = -d .
43     inputext          = .java
44     generic_outputext = .class
45   }