Is there anyway/tool that can directly convert a Visual Studio vcxproj
file to an xcodeproj
?
Asked
Active
Viewed 1,866 times
3

Ameer Sheikh
- 770
- 5
- 14
-
Wild guess: no. This would only really be useful for projects that don't rely on any specific features of either IDE / environment (pure C libraries or such), which doesn't sound like much of a target market. – millimoose Sep 02 '12 at 10:52
1 Answers
1
Forgive me if I'm wrong, or completely off, but I'm thinking that even though compiling with VC++ isn't 100% platform dependent, that moving it over to an Apple IDE might not be doable without porting the actual sourcecode. I don't think there is any sort of automated tool to do so.

Brandon Miller
- 2,247
- 8
- 36
- 54
-
Actually, did a search, turns out Wine has a makefile generator that helps port the code to Unix platforms, this may be useful, look here: [link](http://stackoverflow.com/questions/870533/where-can-i-find-a-tool-to-convert-a-vs-solution-to-a-gcc-makefile) – Brandon Miller Sep 02 '12 at 10:58