mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge pull request #4820
ezavod (1): fix(cmake): add missing dependency
This commit is contained in:
commit
d9ba554eee
24
INSTALL.md
24
INSTALL.md
|
@ -39,18 +39,18 @@
|
|||
|
||||
## Dependencies
|
||||
|
||||
| Name | Version | Modules |
|
||||
|---------------|-------------|----------------------------------------------|
|
||||
| [Qt] | >= 5.5.0 | core, gui, network, opengl, svg, widget, xml |
|
||||
| [GCC]/[MinGW] | >= 4.8 | C++11 enabled |
|
||||
| [toxcore] | = 0.1.\* | core, av |
|
||||
| [FFmpeg] | >= 2.6.0 | avformat, avdevice, avcodec, avutil, swscale |
|
||||
| [CMake] | >= 2.8.11 | |
|
||||
| [OpenAL Soft] | >= 1.16.0 | |
|
||||
| [qrencode] | >= 3.0.3 | |
|
||||
| [sqlcipher] | >= 3.2.0 | |
|
||||
| [pkg-config] | >= 0.28 | |
|
||||
| [filteraudio] | >= 0.0.1 | optional dependency |
|
||||
| Name | Version | Modules |
|
||||
|---------------|-------------|----------------------------------------------------------|
|
||||
| [Qt] | >= 5.5.0 | concurrent, core, gui, network, opengl, svg, widget, xml |
|
||||
| [GCC]/[MinGW] | >= 4.8 | C++11 enabled |
|
||||
| [toxcore] | = 0.1.\* | core, av |
|
||||
| [FFmpeg] | >= 2.6.0 | avformat, avdevice, avcodec, avutil, swscale |
|
||||
| [CMake] | >= 2.8.11 | |
|
||||
| [OpenAL Soft] | >= 1.16.0 | |
|
||||
| [qrencode] | >= 3.0.3 | |
|
||||
| [sqlcipher] | >= 3.2.0 | |
|
||||
| [pkg-config] | >= 0.28 | |
|
||||
| [filteraudio] | >= 0.0.1 | optional dependency |
|
||||
|
||||
## Optional dependencies
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
# This should go into subdirectories later.
|
||||
find_package(PkgConfig REQUIRED)
|
||||
find_package(Qt5Concurrent REQUIRED)
|
||||
find_package(Qt5Core REQUIRED)
|
||||
find_package(Qt5Gui REQUIRED)
|
||||
find_package(Qt5LinguistTools REQUIRED)
|
||||
|
|
Loading…
Reference in New Issue
Block a user