I think no special solutions are required. In our project (several applications that share large areas of code) we use the following approach:

1. Split source code to folders.
2. Create packages for logical units of shared code. 
3. Support monolith (without using packages) and parted builds.
4. Monolith builds are used for coding and debugging. Each application has its own Unit output directory, so all of them are built independently. 
5. Dependency restrictions are enforced by search paths of projects.
6. Parted build are created automatically (we use CruiseControl server and MSBuild project). Automatic build  clears all temporary folders before build, so there are no dependencies between consecutive builds.

In our case, we could not control list of imported files. However, we could control a list of imported packages in parted builds. Having more smaller packages means better granularity. If somebody is adding dependency to the unit, located in folder that is not available in search path, and package containing this unit is not in uses list, parted build is failed. So, explicit action (modifying MSBuild script that generates CFG files for parted build) is required to add dependency.