Hi all,
I would like to copy a Qt project (hellogl for example) to another directory after compilation. Which files (*.cpp, *.h, ...) and subdirectories (\release, ...?) do I need and which have to be deleted?
Greetings,
Michael
Printable View
Hi all,
I would like to copy a Qt project (hellogl for example) to another directory after compilation. Which files (*.cpp, *.h, ...) and subdirectories (\release, ...?) do I need and which have to be deleted?
Greetings,
Michael
files that are not necessary are:
- *.pro.user
- *.o
- Makefile
- moc_****.cpp
run 'make clean' and copy the result.
Hi all,
thank you very much for your fast replies :) .
I´m a beginner in C++ and Qt. So I have to ask how can I run make under Windows XP (SP3)?
I´ve tried it under Start->Qt->Qt Command Prompt, but the system does not find make or make clean (qmake runs). What do I have to do?
Greetings,
Michael
@ Faldzip
I´ve tried this and it works.Quote:
But I would say that all you need is a .pro file and files listed in this .pro file
Thanks,
Michael