strictdepend
If your projects dependencies may differ with the variant,
use the strictdepend
statement.
Without this statement, dependencies will be evaluated for one variant, and then used for all.
With strictdepend
, dependencies are evaluated
explicitlya sometimes lengthy processfor each variant.
Use strictdepend
if, for instance, you conditionally
include a header file, e.g.
#if defined(_DEBUG)
include <debug.h>
#endif