Alternative Makefile for Windows

What is a good Makefile alternative for windows?

I am compiling a set of C ++ files (.cpp and .h) with cl.exe.

I would prefer not to use the Makefile, since I want to minimize the number of third-party utilities that people will have to create for my application.

Drew J. Sonne.

+3
source share
3 answers

VisualStudio comes with nmake, which does not require any third-party tools.

+6
source

MSBuild is a Microsoft build system. This is an XML-based build system used by Visual Studio. If you have Visual C ++ installed, you have MSBuild installed.

Visual Studio - MSBuild, , Visual Studio , ( , Visual Studio ).

+3

, , ++ Windows. Visual Studio, , IDE, devenv.exe/msbuild.exe . Visual Studio, , .

, ++ Windows. IDE, , , , Makefile , , .

Boost, , .jam, , Boost, , bjam, , Boost. bjam , make, , , . bjam, Boost, .

+1

Source: https://habr.com/ru/post/1725016/


All Articles