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:
parent
d77fbb4b19
commit
423f095622
|
@ -40,8 +40,8 @@
|
||||||
## 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 |
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user