Skip to content

Compiling from Source

Ronen Lapushner edited this page Jun 20, 2018 · 3 revisions

TABLE OF CONTENTS

  1. Compiling from Source under Linux
  2. Compiling from Source under Windows

Compiling from Source under Linux

Building From Source

Note: Your compiler must be fully compatible with the C++14 standard!

  1. Install the required dependencies:
Platform Command
Debian/Ubuntu $ sudo apt-get install libsdl2-dev libsdl2-image-dev libgl1-mesa-dev libcap-dev cmake build-essential python
Fedora $ sudo dnf install SDL2-devel SDL2_image-devel mesa-libGL-devel libcap-devel cmake gcc-c++ python2
  1. Clone the project:
git clone https://github.com/ronen25/panorama
  1. Go to the panorama directory and create a build directory:
cd panorama
mkdir build && cd build
  1. Initiate a build using CMake:
cmake -DCMAKE_BUILD_TYPE=Release ..
  1. (Optional) Install the program (elevated permissions might be required):
make install

Compiling from Source under Windows

TODO

Clone this wiki locally