I was looking at InClean, which pulls out code from Include files as needed to support a program. The pulled code can be copied over into the app to remove the need for the Include files when compiling.
Other than perhaps compiling faster, are there other reasons to do this? The PowerBASIC compiler is already very fast so another 1/4 second of the compile time is not an issue for my 10K lines of program code.
Do really large apps take much longer to compile?
Is the final EXE smaller/faster?
Just wondering.
I used InClean on my apps and discovered that I had used some macros - which was fine, I just didn't realize that I had done so. It's always nice to analyze the content of an app and see what's there. Sometimes you can be surprised, especially if the work was spread out over time.
Other than perhaps compiling faster, are there other reasons to do this? The PowerBASIC compiler is already very fast so another 1/4 second of the compile time is not an issue for my 10K lines of program code.
Do really large apps take much longer to compile?
Is the final EXE smaller/faster?
Just wondering.
I used InClean on my apps and discovered that I had used some macros - which was fine, I just didn't realize that I had done so. It's always nice to analyze the content of an app and see what's there. Sometimes you can be surprised, especially if the work was spread out over time.
Comment