visual studio - vcxproj to cmake -



visual studio - vcxproj to cmake -

i'm developing cross-platform c++ project. original thought work msvc2010 , later compile other systems help of cmake , hudson. doesn't seem convenient manually alter cmake files after changes in studio settings.

so, what’s easiest way: write parser vcxproj , vcxproj.filters, or there solution?

it might useful, time time, type of conversion, porting. on travels i've found following, in no particular order:

specifically vs cmake/gyp: vcproj2cmake vcxproj2cmake (not typo!) gypify.py .sln/solution-reading gyp file generator. gyp cmake alternative, beingness used chromium project (base google's chrome browser). gyp output makefile, visual studio or xcode build files (see gyp's '-f [make|scons|msvc|xcode]' switch). python script quite promising, i'm hoping modify correctly specify header-containing folders gcc's '-i' include parameter. other cmake/make-related conversion tools: make so converts visual studio solutions linux gcc makefiles sln2mak c# project sln2mak perl script gucef project includes projectgenerator tool, cmake gencmake (ruby) – kde project 'pbtomake' says can convert xcode xcodeproj/pbproj files makefiles (maybe outdated)

cheers

rich

visual-studio visual-studio-2010 make cmake gyp

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -