Update Dependencies.md

This commit is contained in:
nmr8
2019-01-29 15:42:54 -08:00
committed by Baldur Karlsson
parent 54efa30596
commit 38f68e1534
+3 -17
View File
@@ -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.