From 38f68e1534ff2b5db30b64ca859fe850136e4ee0 Mon Sep 17 00:00:00 2001 From: nmr8 Date: Tue, 29 Jan 2019 15:42:54 -0800 Subject: [PATCH] Update Dependencies.md --- docs/CONTRIBUTING/Dependencies.md | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/docs/CONTRIBUTING/Dependencies.md b/docs/CONTRIBUTING/Dependencies.md index 34dafc527..2b072787e 100644 --- a/docs/CONTRIBUTING/Dependencies.md +++ b/docs/CONTRIBUTING/Dependencies.md @@ -1,5 +1,7 @@ # Dependencies +(Once dependencies are installed, see [Compiling.md](Compiling.md)) + ## Windows On Windows there are no dependencies - you can always compile the latest version just by downloading the code and compiling the solution in Visual Studio. If you want to modify the Qt UI with a WYSIWYG editor you will need a version of Qt installed - at least version 5.6. @@ -56,23 +58,7 @@ And build within the resulting bash shell, which has the tools first in PATH. Debian 9+ (stretch): ``` -sudo apt-get install libx11-dev libx11-xcb-dev mesa-common-dev libgl1-mesa-dev libxcb-keysyms1-dev cmake python3-dev bison autoconf automake libpcre3-dev -``` - -For qrenderdoc: -``` -sudo apt-get install qt5-qmake libqt5svg5-dev libqt5x11extras5-dev -``` - -### Linux build - -``` -git clone https://github.com/baldurk/renderdoc.git -cd renderdoc -export QT_SELECT=qt5 -cmake -B build -S . -cd build/ -make +sudo apt-get install libx11-dev libx11-xcb-dev mesa-common-dev libgl1-mesa-dev libxcb-keysyms1-dev cmake python3-dev bison autoconf automake libpcre3-dev qt5-qmake libqt5svg5-dev libqt5x11extras5-dev ``` On any distribution if you find qmake isn't available under its default name, or if `qmake -v` lists a Qt4 version, make sure you have qtchooser installed in your package manager and use it to select Qt5. This might be done by exporting `QT_SELECT=qt5`, but check with your distribution for details.