I have in my current Delphi 7 project (named, say, Project1.dpr), two files (Project1.dof and Project1.cfg) which my team and I can't decide to put under version control (we use Mercurial btw).
The matter is this: within the two files above are indicated some library, components and extensions paths which are related to the system the programmer is on.
My team is composed of some guys using 32-bit Windows XP and some guys (me included) using 64-bit Windows 7.
So this brings up the question: since on 64-bit Windows 7 Delphi extensions, components and libraries are located under c:\program files (x86)\...
and on 32-bit XP they are simply under c:\program files\...
, committing changes to those files would result in breaking other colleagues' project configurations.
Does somebody have some suggestion for a situation like this?