strictdepend
If your project’s 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
explicitly—a sometimes lengthy process—for each variant.
Use strictdepend
if, for instance, you conditionally
include a header file, e.g.
#if defined(_DEBUG)
include <debug.h>
#endif