Skip to content

Compiling on Ubuntu

olav-st edited this page Mar 23, 2014 · 20 revisions

To compile ScreenCloud on Ubuntu, follow these instructions:

  1. Grab the required dependencies:
    sudo apt-get install build-essential cmake libqxt-dev libquazip0-dev qtmobility-dev python2.7-dev

  2. Pull the ScreenCloud source code from github:
    git clone https://github.com/olav-st/screencloud.git
    cd screencloud

  3. Make a build directory:
    mkdir build
    cd build

  4. Generate a Makefile using CMake. You'll have to set the correct QMake executable since ScreenCloud uses Qt4.
    cmake ../screencloud -DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4

  5. You should now be able to build ScreenCloud by simply doing:
    make

Clone this wiki locally