1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

docs(INSTALL): add missing Debian dependency qttools5-dev

Which provides needed `Qt5LinguistToolsConfig.cmake` for CMake.
This commit is contained in:
Zetok Zalbavar 2017-03-18 19:36:01 +00:00
parent 377908a6a5
commit 3f013331c6
No known key found for this signature in database
GPG Key ID: C953D3880212068A
2 changed files with 4 additions and 1 deletions

View File

@ -255,6 +255,7 @@ sudo apt-get install \
qrencode \ qrencode \
qt5-default \ qt5-default \
qt5-qmake \ qt5-qmake \
qttools5-dev \
qttools5-dev-tools \ qttools5-dev-tools \
yasm yasm
``` ```

View File

@ -6,10 +6,11 @@ apt_install() {
local apt_packages=( local apt_packages=(
automake automake
autotools-dev autotools-dev
build-essential
check check
checkinstall checkinstall
cmake cmake
git build-essential git
libavdevice-dev libavdevice-dev
libgdk-pixbuf2.0-dev libgdk-pixbuf2.0-dev
libglib2.0-dev libglib2.0-dev
@ -27,6 +28,7 @@ apt_install() {
qrencode qrencode
qt5-default qt5-default
qt5-qmake qt5-qmake
qttools5-dev
qttools5-dev-tools qttools5-dev-tools
) )