I am reorganizing my Delphi project. I want to be able to make changes, and then see all the places in the project that break due to these changes. Just like Eclipse lists all the compilation errors for a project (in Java).
In Delphi, I can make changes and then recompile my project, but the compiler stops when it finds the first block that does not compile. I have to fix this block, compile again, which will then show me the following error, etc. Etc.
I want to see all the compilation errors in the project right away. Then I can decide whether to do it or not. For example, if the change requires manual fixing of 50 separate source files, this is not worth doing. But if it only splits 2 files, then it is easy to do.
Is there a way to do this in Delphi? Can I tell the compiler to continue working even after finding a unit that does not compile?
I am using Delphi 2010
delphi
awmross
source share