SYMPTOMS
If a .RSC file, which is an output file of a resource compiler, is included
in a .R file, which is a Macintosh resource file, using either of the
following statements, the Visual Workbench will not generate dependencies
for it:
- include <filename>;
-or-
- INCLUDE <filename>;
For example, if you have a resource file that has the following include
statements in it:
// resource.r
#include "mrc\types.r"
#include "mrc\balloons.r"
include "wlm.rsc";
include "commdlg.rsc";
#include "ftab.r"
then, when generating the dependencies for this file, the Visual Workbench
will not include WLM.RSC or COMMDLG.RSC in the dependencies list. If any of
these .RSC files or the .RC/.R file used to generate the .RSC file changes,
the .RSC file will not be rebuilt. Dependencies are correctly generated for
files included with #include, such as, MRC\TYPES.R, MRC\BALLOONS.R, and
FTAB.R.