views:

69

answers:

1

We are currently working in a team where we use both Visual Studio and Code::Blocks, is there a way to replicate changes between those project files? So if one adds a file to the project file it will also get adjusted in the project file of the other IDE?

Please note: We want our project to work on multiple IDE's, platforms and compilers. Thus a general solution is welcome too.

+1  A: 

I assume you're using a VCS? If so my intuition would be to write a script that syncs up your project files (based on modification date?) and run it as a checkin hook if any of the project files are changed in the commit.

http://wordaligned.org/articles/a-subversion-pre-commit-hook

Mark Pim
We are indeed using a VCS. Doesn't such scripts exist out there? I suppose we are not the first people that want to use more than one IDE on a project.
TomWij