where / how to modify project / QT path ?
-
I have moved my project to different OS and now I need to change few paths .
What would be the most efficient way to do so ?
Should I just install new copy of QT into same project directory?I am trying to mitigate
failures of OS - sometime "upgrade " makes a mess
and sometime QT adds / deletes text ( I have a full backup of my project directory ).I am asking for general suggestion , not for actual implementation.

Cheers
-
If I undestud your question, you can use PRO_FILE_PWD variable in *.pro / *.pri file
https://doc.qt.io/qt-6/qmake-variable-reference.html#pro-file-pwd
-
Thanks - very helpful suggestion I used this
message("* LIBS path ****************************************************")
message($$LIBS)
message(" LIBS path *****************************************************")and it does show the incorrect path .
Now I have to "back-paddle " to find the actual code causing this ...,.