$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Phillip Seaver (phil_at_[hidden])
Date: 2006-12-06 13:11:45
Deane Yang wrote, on 12/6/2006 12:36 PM:
> I'd like to use the install rule with an executable and shared libraries
> that it depends on. If I include, in the list of targets in the install
> rule, the target that creates a shared library, then it installs both
> the DLL and the stub LIB file. Worse, if I follow the advice on the
> install documentation for automatically installing dependencies with
> "<install-type>LIB", all the static libraries that were used to build
> the DLL are also installed, too.
>
> How do I install the executable and DLL's only?
>
> (Again, I apologize if this is documented somewhere. I have a lot of
> difficulty locating the relevant information in the boost documentation.)
>
Try "<install-type>SHARED_LIB".
Phillip