Importing Projects With Inter-Dependencies

If you are building a project that had external project dependencies, such as an import library from a DLL you must make sure the projects are built in the correct order to avoid missing dependencies.

The best way to do this is to import projects with a bld.inf file. For example, if you are building an executable that relies on a static DLL's import library you need to build the project that generates the import library first.  If a project contains a bld.inf file that contains all the required project MMP files you should import via the INF file. Building projects after importing with INF files will insure that other project dependencies get built properly.
Concepts
Tasks