While building .pro project using QTCreator on windows, it will create an makefile and .o files in debug/release folder. Since i need only .exe, is it possible to configure QTCreator to put all intermediate files (makefiles, .o files etc) into something like c:\tmp and resulting .exe into specified folder like c:\out\debug or c:\out\release ?
While building .pro project using QTCreator on windows, it will create an makefile and
Share
You can specify everything in the
.profile.For example, the binary will end up in DESTDIR so
would set up an unusual output directory as well as temporary directories below
C:/tmp.