show/hide this revision's text 2 deleted 468 characters in body

It is a very bad smell indeed and I suspect but at least the author had no idea how to proprely build made it a projectdifferent configuration.

If everything is in a single file, it means everything needs to be compiled for every change. On projects that can take up to an hour to build, I think we can agree this is kind of a no-no.

This can also causes all kind of bad things with templates, any kind of private type or function, make static variables global, and a long list of other very nighmarish things.

I highly recommend you reorganize the project correctly or

At least it's going to bite you for sure in a different configuration, but that also means you will have to maintain and test this configuration.

EDIT: Didn't read the near futurequestion correctly and made changes accordingly.

show/hide this revision's text 1

It is a very bad smell indeed and I suspect the author had no idea how to proprely build a project.

If everything is in a single file, it means everything needs to be compiled for every change. On projects that can take up to an hour to build, I think we can agree this is kind of a no-no.

This can also causes all kind of bad things with templates, any kind of private type or function, make static variables global, and a long list of other very nighmarish things.

I highly recommend you reorganize the project correctly or it's going to bite you for sure in the near future.