You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current CMakeLists.txt configuration for the hide-formfields module has issues when trying to locate and link with Qt5 and Poppler libraries. These issues prevent successful compilation on certain systems, leading to build errors.
Problem:
The CMakeLists.txt file does not reliably find and link Qt5 and Poppler libraries, resulting in build failures.
This affects users who try to build hide-formfields on systems where the paths to these dependencies may vary.
Proposed Solution:
Update CMakeLists.txt to use find_package for Qt5, ensuring that the necessary libraries and include directories are correctly detected.
Correct the include directories and library linking configurations for Poppler.
Steps to Reproduce:
Clone the repository.
Navigate to the cpp/hide-formfields directory.
Run the build command (e.g., ./build.sh).
Expected Behavior:
The hide-formfields module should compile successfully without errors.
Actual Behavior:
The build fails due to missing or incorrectly linked Qt5 and Poppler dependencies.
The text was updated successfully, but these errors were encountered:
The current
CMakeLists.txt
configuration for thehide-formfields
module has issues when trying to locate and link with Qt5 and Poppler libraries. These issues prevent successful compilation on certain systems, leading to build errors.Problem:
CMakeLists.txt
file does not reliably find and link Qt5 and Poppler libraries, resulting in build failures.hide-formfields
on systems where the paths to these dependencies may vary.Proposed Solution:
CMakeLists.txt
to usefind_package
for Qt5, ensuring that the necessary libraries and include directories are correctly detected.Steps to Reproduce:
cpp/hide-formfields
directory../build.sh
).Expected Behavior:
The
hide-formfields
module should compile successfully without errors.Actual Behavior:
The build fails due to missing or incorrectly linked Qt5 and Poppler dependencies.
The text was updated successfully, but these errors were encountered: