I came across a lib missing problem in my app, it turns out that this might relate to my understanding of $$PWD
and .
in .pro file of qt project.
So do
$$PWD
and.
both mean the dir, which contains the .pro file OR the dir, which is generated by building process(like: ****-build-desktop-Qt_4_8_1_in_PATH__System__Debug). Or, they mean different things.in some variable declaration like
OBJECTS_DIR = obj/Obj
, it looks like that.
means the generated dir. Whereas, inHEADERS += remoteclient.h ./RealPlay/realplay.h \
, it looks like that.
means the dir that contains .pro file.How about their meanings in LIBS and DESTDIR, etc. ?