views:

35

answers:

1

I do most of my home development in Xcode, however my classes require me to use visual studios 2010. I am curious if there is some tool that can convert my xcode project to visual studios projects and back and structure the files the way the ides want them to be? the programs I am writing are OS independent

A: 

You might want to consider using a meta-make such as CMake that can generate both Visual Studio and XCode project files.

It's probably not as ideal for you since you'll need to write the CMake file and then fix up both the XCode and VS projects to your liking (though I believe CMake has some support for project organisation in Visual Studio—not sure about XCode) rather than doing a straight conversion but it would allow you to work in XCode and submit as a VS project.

r_