how to run GNUMakefile with qtcreator ?
-
I am trying to run one of the examples related to OpenDDS within QT.
the example available which is ishapes project doesn't have any .pro file.how can I run the project?
-
Hi @miniCircuit,
the most easy way is to set up a Generic Project, which already delegates the build to
make
.Regards
-
@miniCircuit You can import that make files based project: go to "New File or Project" and select "Import Project" and then "Import Existing Project".
-
@miniCircuit said in how to run GNUMakefile with qtcreator ?:
GNUMakefile
what is this? Is it a makefile called GNUMakefile? If so try to rename it in Makefile which is actually the correct name for a make file.
-
Please read https://doc.qt.io/qtcreator/creator-project-generic.html !
There is nothing Creator does about your build system, it does not matter how the make file is called, it can be GNUMakefile
All Creator does is calling
make all
andmake clean
for build resp. clean. These can be changed in the Projects settings, too.