Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate Make Files (for GCC) from Visual Studio Solution [closed]

I want to compile my Visual Studio Solution, with three projects, in Linux using GCC. The solution contains two DLL projects and one application(.EXE) project which uses these DLLs. The source code doesn't contain any Windows dependency.

How do I convert the solution (with 3 projects) to make files which can be compiled in Linux using GCC.

Is there is any tool for converting the Visual Studio Solution (Project) to make file/s.

The Visual Studio version is Visual Studio 2008

like image 213
Sijo Avatar asked Oct 13 '12 17:10

Sijo


1 Answers

Maybe this can help you, but you need to handle whit you outputs in the original code

Make-It-so

http://code.google.com/p/make-it-so/

or sln2mak

http://www.codeproject.com/Articles/28908/Tool-for-Converting-VC-2005-Project-to-Linux-Makef

i hope this can help you

like image 186
Carlos Dueñas Avatar answered Sep 20 '22 15:09

Carlos Dueñas