How to export a Makefile from a Visual Studio 2015 C++ project

12,256

I googled, too, with the same result: There really seems to be no way to create a Makefile from a given VS 2015 solution. The closest I got was MakeItSo. It supports VS 2010 but is open source, so maybe you can adapt it to your needs.

My recommendation is using CMake. Yes, you will have to invest some effort to getting used to it and to convert the project definitions. But managing CMake definitions is much easier than clicking through solution and project property dialogs.

And then you get your Makefile is a nice side effect.

Share:
12,256
slaesh
Author by

slaesh

Updated on June 28, 2022

Comments

  • slaesh
    slaesh almost 2 years

    I googled a lot and saw some old posts that it was possible till VS 2008?

    But now i can't find the option "export makefile" anymore..

    Is there now another way to do this?