I am trying to compile a .pro
file using qmake
and Qt4 to get a library from qttestrunnerlib.pro
but I get this error:
~/docs/UT_Cpp_Test/main/cppDir/src/qttestrunner$ qmake qttestrunnerlib.pro
uic: Error in line 6, column 14 : Unexpected element name
uic: Error in line 6, column 14 : Unexpected element name
When I use Qt3 it works, and I get my lib successfully. But I want to upgrade it to Qt4. Is it possible? and what should I do?
That is because the designer in qt4 is different from qt3. means ui files generated by qt3 and qt4 are not the same.
That's why the unexpected element name error!