Can relative paths be used in a qmake file when specifying LIBS, something like:

Qt Code:
  1. LIBS += -L./lib -lsomelib
To copy to clipboard, switch view to plain text mode 

We are developing a project and placing the .pro file into source control. The problem is that we have only been able to use absolute paths, as in

Qt Code:
  1. LIBS += -LC:/TheProject/lib -lsomelib
To copy to clipboard, switch view to plain text mode 

but another developer might have checked out the project to a different location, for example

Qt Code:
  1. LIBS += -LC:/someDir/TheProject/lib -lsomelib
To copy to clipboard, switch view to plain text mode 

Is there anyway to avoid this conflict so we don't always have to change this line when building?