diff options
author | saturneric <[email protected]> | 2025-05-31 23:18:22 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-05-31 23:18:22 +0000 |
commit | 25806bcebe00922ec2f2f6c52296d457c9d8a014 (patch) | |
tree | 8f037483f73010e1fe9e4454fa2e51d206df684f | |
parent | feat(ver_check): add bktus version check support (diff) | |
download | Modules-25806bcebe00922ec2f2f6c52296d457c9d8a014.tar.gz Modules-25806bcebe00922ec2f2f6c52296d457c9d8a014.zip |
fix: add xml component to qt dependencies
- add Xml component to Qt5 required components
- add Xml component to Qt6 required components
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c0a67ad..2362c10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,11 +84,11 @@ message(STATUS "GpgFrontend Modules ARCHIVE Output Path: ${CMAKE_ARCHIVE_OUTPUT_ if(GPGFRONTEND_QT5_BUILD) # Introduce Qt # Support Qt version: 5.15.x - find_package(Qt5 5.15 COMPONENTS Core Widgets Network LinguistTools Concurrent REQUIRED) + find_package(Qt5 5.15 COMPONENTS Core Widgets Network LinguistTools Concurrent Xml REQUIRED) else() # Introduce Qt # Support Qt version: 6.x - find_package(Qt6 6 COMPONENTS Core Widgets Network LinguistTools Concurrent REQUIRED) + find_package(Qt6 6 COMPONENTS Core Widgets Network LinguistTools Concurrent Xml REQUIRED) endif() # Qt configuration |