visual-studiovisual-studio-2010makefilecmakegyp

How to support both vcxproj to cmake on a project?


I'm developing cross-platform c++ project. The original idea is to work with msvc2010 and later compile for other systems with the help of CMake and Hudson. It doesn't seem to be convenient manually change CMake files after changes in studio settings.

So, what’s the easiest way: to write parser for vcxproj and vcxproj.filters, or there is another good solution?


Solution

  • It might be useful, from time to time, to do this type of conversion, say for porting. On my travels I've found the following, in no particular order:

    Specifically for VS to CMake/GYP:

    Other Cmake/Make-related conversion tools:

    Cheers

    Rich