qt qmake mkspecs relative path
- by Fabien Bernede
Hello, when I compile Qt with Windows SDK 7.0, I use :
configure.exe -shared -platform win32-msvc2008 -ltcg -no-dsp -no-vcproj
nmake
...no error occured. But when I move or change name of my Qt folder, qmake.exe said me makespec is not defined, so I configure my QMAKESPEC to win32-msvc2008, I try again, but now it said me it cannot find mkspecs folder, it try to find this folder only where I compiled Qt (absolute path), I want qmake.exe use relative path : ../mkspecs/ not C:\qt-4.6.2\mkspecs.
How can I solve this issue ?