$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Phillip Seaver (phil_at_[hidden])
Date: 2007-03-02 11:49:54
Piotr Jachowicz wrote:
> Hello,
>
> I use boost-build to run cross-compiler. Although I'm compiling on
> Windows I want to build executable with .txe extension, not exe. How
> to set boost-build to achieve it?
>
> --
> Best Regards,
> Piotr Jachowicz
Hi,
You can try this:
import type : change-generated-target-suffix ;
type.change-generated-target-suffix EXE : <os>NT : txe ;
See this thread:
http://article.gmane.org/gmane.comp.lib.boost.build/14901/match=change+generated+target+suffix
Since you're cross-compiling you probably want to use <target-os>
instead of <os> though. I haven't used <target-os> yet, so I'm not sure
what's involved.
Hope this helps
Phillip