diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-07-09 11:35:15 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-07-09 11:35:15 +0000 |
commit | fc8a2a1fc50c0896832414439d9ac614792eba65 (patch) | |
tree | 003ad59e39185eb21e4b5c7ca2ea3df333b4cfcd /TAO/tests | |
parent | 25187e92dec9f381f527b04d28d0b1f23b520006 (diff) | |
download | ATCD-fc8a2a1fc50c0896832414439d9ac614792eba65.tar.gz |
ChangeLogTag: Mon Jul 9 11:32:20 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/tests')
-rw-r--r-- | TAO/tests/IDL_Test/IDL_Test.mpc | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/TAO/tests/IDL_Test/IDL_Test.mpc b/TAO/tests/IDL_Test/IDL_Test.mpc index b9c3c2561d4..cdd0d238824 100644 --- a/TAO/tests/IDL_Test/IDL_Test.mpc +++ b/TAO/tests/IDL_Test/IDL_Test.mpc @@ -33,19 +33,26 @@ project(*Main): taoserver, messaging, gen_ostream { // We leave the hard-coded -Gos (hard-coded for // the other IDL files) off the command line for - // this file, since it references a basic type IDL - // sequence, which won't have it's own ostream - // insertion operator generated unless the gen_ostream + // these files, since they reference IDL types + // which won't have their own ostream + // insertion operators generated unless the gen_ostream // MPC feature has been turned on by the user, in which // case, the gen_ostream base project above will bring // in the -Gos option for this file as well. IDL_Files { sequence.idl } + + // These files must also lose -Gos by default, but + // unlike the block above, must get -GA. + IDL_Files { + idlflags += -GA + anonymous.idl + array_only.idl + } IDL_Files { idlflags += -GA -Gos - anonymous.idl valuetype.idl constants.idl generic_object.idl @@ -53,7 +60,6 @@ project(*Main): taoserver, messaging, gen_ostream { pragma.idl repo_id_mod.idl typedef.idl - array_only.idl typecode.idl } |