$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-03-12 02:15:53
renej_frog wrote:
> I'm trying to figure out a rule and/or action to get generated the files
> *SK.cc, *DynSK.cc and *.hh from *.idl
> (i.e. generating stubs from IDL with omniORB's omniidl compiler)
>
> I get it more-or-less doing what I want when I pack the *SK.cc and
> *DynSK.cc files into one *.cc file. However, is there a way without
> having to pack the two generated source files into one?
In Boost.Build V2, you'd write (various imports are omitted):
type.register IDL : idl ;
generators.register-standard idl.idl IDL : CPP(%_SK) CPP(%_DynSK) HPP ;
actions idl
{
omniidl .....
}
As for V1 -- I'm afraid I don't know.
- Volodya