diff options
author | link2xt <link2xt@testrun.org> | 2021-07-26 00:50:32 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-07-26 00:50:32 +0300 |
commit | 5a4b7039b0c428dd09e3ab484076675e9ea4f98d (patch) | |
tree | 8757ad8df8708d6120a3c65112e156cf09ebca7d | |
parent | dfc476b29e4c5955313eeb5e5ec5bef9c23c9239 (diff) | |
download | kdeltachat-5a4b7039b0c428dd09e3ab484076675e9ea4f98d.tar.gz kdeltachat-5a4b7039b0c428dd09e3ab484076675e9ea4f98d.zip |
cmake: add Qt Multimedia requirement
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c1743f3..78eec11 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,11 +17,11 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) find_package( QT NAMES Qt6 Qt5 - COMPONENTS Core Widgets Quick WebEngine + COMPONENTS Core Widgets Quick WebEngine Multimedia REQUIRED) find_package( Qt${QT_VERSION_MAJOR} - COMPONENTS Core Widgets Quick WebEngine + COMPONENTS Core Widgets Quick WebEngine Multimedia REQUIRED) find_package(PkgConfig REQUIRED) |