Generate Make Files (for GCC) from Visual Studio Solution

33,031

Solution 1

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

Solution 2

You can use i.e. vcproj2cmake or vcxproj2cmake. Further tools are already listed here: How to support both vcxproj to cmake on a project?

Share:
33,031
Sijo
Author by

Sijo

Updated on December 16, 2020

Comments

  • Sijo
    Sijo over 3 years

    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