I have a Qt project that uses qmake. To improve clarity and readability, I'd like to keep the
separate.
So my first step was putting the source files into a src/ sub directory:
myproject/
myproject.pro
src/
main.cpp
MainWindow.ui
...
That way I separated the source files from the build system (*.pro). However, when I then run qmake
followed by make
, the generated files (object files, etc) are placed into the main project folder:
myproject/
myproject.pro
Makefile
main.o
ui_MainWindow.h
...
src/
main.cpp
MainWindow.ui
...
Well, at least they weren't put into the src/
folder, but how do I specify that they are put into another sub folder such as build/
?
myproject/
myproject.pro
Makefile
build/
main.o
ui_MainWindow.h
...
src/
main.cpp
MainWindow.ui
...
(BTW, I don't care where the target binary myproject
is put, but I guess it should be placed directly into project folder rather than into build/
.)