views:

72

answers:

1

While I love the Unix toolset family(including its black sheep Make) the project I'm working on currently is cross platform. That means having a Visual studio project ready for build.

So my question is, is there a tool/plugin for importing a Make file into VS or conversely is there a way to export a visual studio project into Make? Or any textual form, actually. I could write a script that parsed that into a Make file.

+4  A: 

I would suggest making using Cmake... which will generate a set of makefiles or a visual Studio Project.

John Mulder