From b557409b1eec511096e691898e3793ede2f25e81 Mon Sep 17 00:00:00 2001 From: Michael Luggen Date: Fri, 6 Mar 2015 11:29:14 +0100 Subject: [PATCH] Update install.md --- install.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/install.md b/install.md index 54d3539..f975493 100644 --- a/install.md +++ b/install.md @@ -10,32 +10,32 @@ First make sure you have a recent version of XCode. Install [Homebrew](http://brew.sh) ```sh - brew install qt5 - brew link --force qt5 +brew install qt5 +brew link --force qt5 ``` ### Linux The following packages are necessary to compile (Debian/Ubuntu). ```sh - sudo apt-get install qt5-default qt5-qmake - sudo apt-get install libfreeimage-dev libopencv-core-dev libopencv-core-dev libopencv-imgproc-dev libopencv-highgui-dev +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 ### Windows ```sh - git clone --recursive https://github.com/cpvrlab/ImagePlay.git - cd ImagePlay - qmake -tp vc -r +git clone --recursive https://github.com/cpvrlab/ImagePlay.git +cd ImagePlay +qmake -tp vc -r ``` Use **ImagePlay.sln** to compile in Visual Studio or **ImagePlay.pro** to use QtCreator ### OSX ```sh - git clone --recursive https://github.com/cpvrlab/ImagePlay.git - cd ImagePlay - qmake -recursive - make +git clone --recursive https://github.com/cpvrlab/ImagePlay.git +cd ImagePlay +qmake -recursive +make ```