=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / GIOP_Fragments / Java_Big_Request / Java_Big_Request.mpc
blob1072daa2e9b42937108ee28a141d9275e86b8ae4
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     Test.idl
28   }
31 // This project will build the java server and C++ client
32 project(Java_Big_Request): taoexe, portableserver {
33   requires += java
34   after    += *IDL
36   // Define the java type
37   Define_Custom(JAVA) {
38     command           = javac
39     commandflags      = -d .
40     inputext          = .java
41     generic_outputext = .class
42   }