how to run the makefile using qprocess...
Unsolved
General and Desktop
-
hi all...one doubt how to run the makefile using qprocess
-
//comm.exe
QProcess pr=new QProcess(this);
pr.start("./comm");i tried with above code not working
-
@karti-gesar makefile is a simple plain file. You need
make
command which understands the commands inside the makefile. So try runningmake
usingQProcess
.