mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-04-24 23:55:52 +03:00
[PR #441] fix: Fixing qt package not found error during cmake step by adding th… #399
Labels
No labels
android
bug
documentation
enhancement
good first issue
help wanted
linux
pull-request
reverse-engineering
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/librepods#399
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/kavishdevar/librepods/pull/441
Author: @andreiribas
Created: 1/31/2026
Status: 🔄 Open
Base:
main← Head:fix-installation-on-linux-ubuntu-25.10-questing📝 Commits (1)
96da7affix: Fixing qt package not found error during cmake step by adding the correct package for ubuntu 25.10 questing📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
linux/README.md(+1 -1)📄 Description
…e correct package for ubuntu 25.10 questing<
For Ubuntu 25.10 questing, I got an error saying that it could not find a qt dependency while executing the cmake step:
main ~/apps/librepods/linux/build> cmake ..
-- Could NOT find Qt6LinguistTools (missing: Qt6LinguistTools_DIR)
CMake Error at CMakeLists.txt:7 (find_package):
Found package configuration file:
but it set Qt6_FOUND to FALSE so package "Qt6" is considered to be NOT
FOUND. Reason given by package:
Failed to find required Qt component "LinguistTools".
Expected Config file at
"/usr/lib/x86_64-linux-gnu/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake"
does NOT exist
Configuring with --debug-find-pkg=Qt6LinguistTools might reveal details why
the package was not found.
Configuring with -DQT_DEBUG_FIND_PACKAGE=ON will print the values of some
of the path variables that find_package uses to try and find the package.
-- Configuring incomplete, errors occurred!
exit 1
I fixed it installing the package sudo apt install qt6-tools-dev
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.