Skip to content

Latest commit

 

History

History
70 lines (57 loc) · 1.57 KB

File metadata and controls

70 lines (57 loc) · 1.57 KB

Build instructions

Windows

OSX

Linux

Windows

Prerequisites

Build

git clone --recursive https://github.com/cpvrlab/ImagePlay.git
cd ImagePlay
qmake -tp vc -r

Visual Studio:

  • Open ImagePlay.sln
  • Set ImagePlay as startup project.
  • Run

Qt Creator:

  • Open ImagePlay.pro
  • Disable Shadow build in the project settings.
  • Run

OSX

Prerequisites

First make sure you have a recent version of XCode.

Install Homebrew

brew install qt5
brew link --force qt5

Build

git clone --recursive https://github.com/cpvrlab/ImagePlay.git
cd ImagePlay
qmake -recursive
make 

Linux

Prerequisites

The following packages are necessary to compile (Debian/Ubuntu).

sudo apt-get install qt5-default qt5-qmake git
sudo apt-get install libfreeimage-dev libopencv-core-dev libopencv-core-dev libopencv-imgproc-dev libopencv-highgui-dev

Build

git clone --recursive https://github.com/cpvrlab/ImagePlay.git
cd ImagePlay
qmake -recursive
make