Skip to content

Latest commit

 

History

History
97 lines (54 loc) · 1.19 KB

CppMake.md

File metadata and controls

97 lines (54 loc) · 1.19 KB

 

 

 

 

 

 

make is a utility that automatically builds executable programs and libraries from source code by reading files called Makefiles which specify how to derive the target program [1].

 

 

 

 

 

 

In Qt Creator, the call to make can be changed in the projects' Build Settings. make is one of the Build Steps.

 

The default call to make is the following:

 


make -w in /MyFolder-build-desktop

 

 

 

 

 

Example Qt Creator makefiles