-
Notifications
You must be signed in to change notification settings - Fork 226
Building on Linux
Nathan Osman edited this page Jul 9, 2016
·
3 revisions
The instructions below apply to Ubuntu 14.04, 15.10, and 16.04. If your distribution is not Debian-based, you may need to adapt the commands.
-
Versions of Ubuntu prior to 15.10 (Wily Werewolf) include an outdated version of CMake and therefore you will need to add the following PPA before installing CMake:
sudo add-apt-repository ppa:george-edison55/cmake-3.x sudo apt-get update
-
Install GCC, CMake, and the Qt 5 development files:
sudo apt-get install build-essential cmake qtbase5-dev
To enable support for application indicators, you will need to install the following packages:
sudo apt-get install libgtk2.0-dev libappindicator-dev libnotify-dev
-
Change to the root of the source directory and build the project:
mkdir build && cd build cmake .. make
-
The NitroShare binary will be in the
out/
directory and can be run with:out/nitroshare
Debian packaging for NitroShare can be found here:
https://github.com/nitroshare/nitroshare-desktop-debian