$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-build] How to control include order?
From: Samuel Debionne (samuel.debionne_at_[hidden])
Date: 2015-03-20 09:44:48
Hi,
I have found about the && syntax (e.g. <include>a&&b ) in the
documentation. But I wonder how to maintain the include order of two
targets that have include directives in their usage requirements :
lib a : a.cpp : : <include>dir/a ;
lib b : b.cpp : : <include>dir/b ;
exe c : a&&b ;
Here I would like to specify that 'dir/a' should be included before
'dir/b'. Is there any way to that ?
Samuel