Hi everyone,
Here's the issue, i just created a small script that generates a VERSION.H file to be included in my project in order to get up-to-date versioning inside the project. Now i managed to get this script running ok by adding it in the pre-build steps section. Now my problem is that some files that include this VERSION.H don't get recompiled when the .H file changes since the .o file is already on the system. Is there any way i can force a dependency so that when building a given.o file that includes VERSION.H it will actually check the creation dates and rebuild given.o if VERSION.H is more recent?
Btw, i'm running codeblocks 1.0rc2 on linux with gcc 4.0.2.
Thanks to all for your time and help in advance.