What is "target.path = $$[QT_INSTALL_EXAMPLES]/widgets/mainwindows/mdi" in .pro
General and Desktop
5
Posts
3
Posters
4.4k
Views
2
Watching
-
Why are these last three lines in my project
.profile:# install target.path = $$[QT_INSTALL_EXAMPLES]/widgets/mainwindows/mdi INSTALLS += targetThe project started from the mdi example, and I copied it to my own directory.
Can I (Should I) simply delete these three lines (or comment then out)?
Do they do anything?
Shouldtarget.pathorINSTALLSbe set to something else?
Thanks -
Hi,
These lines is for telling the build system where to install these when calling make install after a build.
-
Hi,
These lines is for telling the build system where to install these when calling make install after a build.
-
If you don't plan to call
make installthen you can just ignore them -
@SGaist So after I copy an example to my own location, I should edit these? or delete them?
I don't want any connection to the original location of the example. Right?