Build depends:
  GCC or Clang compiler
  SQLite version 3.6.19 or newer
  Qt version 4.7.* or 4.8.*
  Required Qt development tools:
    qmake
    lrelease
  Required Qt libraries:
    QtCore
    QtGui
    QtNetwork
    QtSql compiled with sqlite support
    QtWebKit
    QtXml


Instructions for Linux and other UNIX-like systems:
  mkdir _build && cd _build
  qmake CONFIG+=release PREFIX=/usr ../QuiteRSS.pro
  make -j2
  make install

Instead of -j2 make option you can use -j<number of your CPU cores>.
For making debug build use CONFIG+=debug instead of CONFIG+=release.
By default qmake uses gcc, for using clang you need to alter qmake command:
  qmake QMAKE_CC=clang QMAKE_CXX=clang++ QMAKE_LINK=clang++ QMAKE_LINK_C=clang CONFIG+=release PREFIX=/usr ../QuiteRSS.pro

For building with system qtsingleapplication add SYSTEMQTSA=1 to qmake command.
For building without phonon add DISABLE_PHONON=1 to qmake command.

Instruction for Windows:
  Visual Studio:
    qmake CONFIG-=debug_and_release CONFIG-=debug
    nmake

Instructions for Mac OS:
  cd /path/to/build
  qmake -recursive -spec macx-g++ CONFIG+=release CONFIG+=x86_64 /path/to/quite-rss/QuiteRSS.pro
  make -j3
  make install
  cd /path/to/build/release/target
  macdeployqt quiterss.app/ -dmg

Instead of -j3 make option you can use -j<number of your CPU cores>.
