Seems to be a global problem.
Looks like the problem is from GIT hash 8d5d0b53. The tqt.pc file no longer contains the
required information and there is not tqtqui.pc file.
I think this is the cause:
configure_file( tqt.pc.cmake tqt.pc @ONLY )
+configure_file( tqtqui.pc.cmake tqt.pc @ONLY )
Proposed patch:
diff -urN tqtinterface/qtinterface/CMakeLists.txt
tqtinterface.new/qtinterface/CMakeLists.txt
--- tqtinterface/qtinterface/CMakeLists.txt 2012-06-12 17:30:31.000000000 -0500
+++ tqtinterface.new/qtinterface/CMakeLists.txt 2012-06-13 13:19:23.000000000 -0500
@@ -139,7 +139,7 @@
endforeach( )
configure_file( tqt.pc.cmake tqt.pc @ONLY )
-configure_file( tqtqui.pc.cmake tqt.pc @ONLY )
+configure_file( tqtqui.pc.cmake tqtqui.pc @ONLY )
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/tqt.pc DESTINATION ${PKGCONFIG_INSTALL_DIR} )
Darrell