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

fix(cmake): add missing dependency

Requires `Qt5Concurrent` to be installed when running cmake.
This is needed by `coreav.cpp`.
This commit is contained in:
ezavod 2017-11-22 17:59:24 +01:00
parent d77fbb4b19
commit 423f095622
No known key found for this signature in database
GPG Key ID: E9FDE71887B4D083
2 changed files with 13 additions and 12 deletions

View File

@ -39,18 +39,18 @@
## Dependencies ## Dependencies
| Name | Version | Modules | | Name | Version | Modules |
|---------------|-------------|----------------------------------------------| |---------------|-------------|----------------------------------------------------------|
| [Qt] | >= 5.5.0 | core, gui, network, opengl, svg, widget, xml | | [Qt] | >= 5.5.0 | concurrent, core, gui, network, opengl, svg, widget, xml |
| [GCC]/[MinGW] | >= 4.8 | C++11 enabled | | [GCC]/[MinGW] | >= 4.8 | C++11 enabled |
| [toxcore] | = 0.1.\* | core, av | | [toxcore] | = 0.1.\* | core, av |
| [FFmpeg] | >= 2.6.0 | avformat, avdevice, avcodec, avutil, swscale | | [FFmpeg] | >= 2.6.0 | avformat, avdevice, avcodec, avutil, swscale |
| [CMake] | >= 2.8.11 | | | [CMake] | >= 2.8.11 | |
| [OpenAL Soft] | >= 1.16.0 | | | [OpenAL Soft] | >= 1.16.0 | |
| [qrencode] | >= 3.0.3 | | | [qrencode] | >= 3.0.3 | |
| [sqlcipher] | >= 3.2.0 | | | [sqlcipher] | >= 3.2.0 | |
| [pkg-config] | >= 0.28 | | | [pkg-config] | >= 0.28 | |
| [filteraudio] | >= 0.0.1 | optional dependency | | [filteraudio] | >= 0.0.1 | optional dependency |
## Optional dependencies ## Optional dependencies

View File

@ -6,6 +6,7 @@
# This should go into subdirectories later. # This should go into subdirectories later.
find_package(PkgConfig REQUIRED) find_package(PkgConfig REQUIRED)
find_package(Qt5Concurrent REQUIRED)
find_package(Qt5Core REQUIRED) find_package(Qt5Core REQUIRED)
find_package(Qt5Gui REQUIRED) find_package(Qt5Gui REQUIRED)
find_package(Qt5LinguistTools REQUIRED) find_package(Qt5LinguistTools REQUIRED)