Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello every one
I have just downloaded a open source project which is said to be compiled using visual studio c++. It contains 3 makeFiles (makeFile, makeFile(1) and makeFile(2) )
I always open programs in VS using the .sln files and now I dont know what to do with this makeFile.
can anyone instruct me how to deal with it please.

regards
Posted
Updated 3-Apr-13 20:07pm
v2

Visual Studio has a special type of project, called Makefile Project, that allows you to use your own make file and other command line tools to build your project. See

MSDN VisualStudio 2005 Makefile Project[^]

In such a project you can use for example Microsofts version of the make utility, called NMAKE, to build your project.

All this applies to VS 2005. I am not sure whether newer versions of VS still support this.
 
Share this answer
 
You can use the equivalent of MakeFIle in Visual Studio.
This is called MSBuild[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900