Hello. I am using QtSingleApplication and QtService from QtSolutions in my applications. They work fine with Qt4, but I can't build them against Qt5:
Qt Code:
  1. yarko@ubuntu:/qt/qt-solutions/qtsingleapplication$ qmake
  2. WARNING: Include file /qt/qt-solutions/qtsingleapplication/config.pri not found
  3. yarko@ubuntu:/qt/qt-solutions/qtsingleapplication$ make
  4. cd examples/ && ( test -f Makefile || /qt/qt-5.0.0-x64/5.0.0/gcc_64/bin/qmake /qt/qt-solutions/qtsingleapplication/examples/examples.pro -o Makefile ) && make -f Makefile
  5. make[1]: Entering directory `/qt/qt-solutions/qtsingleapplication/examples'
  6. cd trivial/ && ( test -f Makefile || /qt/qt-5.0.0-x64/5.0.0/gcc_64/bin/qmake /qt/qt-solutions/qtsingleapplication/examples/trivial/trivial.pro -o Makefile ) && make -f Makefile
  7. WARNING: Include file /qt/qt-solutions/qtsingleapplication/config.pri not found
  8. make[2]: Entering directory `/qt/qt-solutions/qtsingleapplication/examples/trivial'
  9. g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I../../../../qt-5.0.0-x64/5.0.0/gcc_64/mkspecs/linux-g++-64 -I. -I../../src -I../../../../qt-5.0.0-x64/5.0.0/gcc_64/include -I../../../../qt-5.0.0-x64/5.0.0/gcc_64/include/QtNetwork -I../../../../qt-5.0.0-x64/5.0.0/gcc_64/include/QtGui -I../../../../qt-5.0.0-x64/5.0.0/gcc_64/include/QtCore -I. -o qtsingleapplication.o ../../src/qtsingleapplication.cpp
  10. In file included from ../../src/qtsingleapplication.cpp:42:0:
  11. ../../src/qtsingleapplication.h:44:30: fatal error: QtGui/QApplication: No such file or directory
  12. compilation terminated.
To copy to clipboard, switch view to plain text mode 

I'm running Ubuntu 12.04.1 LTS x64, Qt5 x64 is installed.

I've searched over the web and it seems like those classes use some deprecated functionality and should be replaced. Is there a way to use QtSolutions along with Qt5? Or are there new superseding classes in Qt5 framework?