Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Native Makefile alternative for windows

What is a good alternative to Makefile on windows?

I'm compiling a collection of c++ files (.cpp's and .h's) using cl.exe.

I'd rather not use Makefile, as I want to minimise the amount of 3rd party utilities people will need to build my application.

Drew J. Sonne.

like image 925
Drew Avatar asked Dec 22 '22 07:12

Drew


1 Answers

VisualStudio comes with nmake which would not require any 3rd party tools.

like image 200
Nic Strong Avatar answered Jan 02 '23 14:01

Nic Strong