Skip to content

Commit

Permalink
Use transitive libs for Qt
Browse files Browse the repository at this point in the history
Signed-off-by: Uilian Ries <uilianries@gmail.com>
  • Loading branch information
uilianries committed Sep 26, 2024
1 parent f1395ec commit ebce50a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions recipes/qxlsx/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ def layout(self):
cmake_layout(self, src_folder="src")

def requirements(self):
# INFP: QXlsx/xlsxdocument.h includes QtGlobal
self.requires("qt/[~5.15]", transitive_headers=True)
# INFO: QXlsx/xlsxdocument.h includes QtGlobal
# INFO: transitive libs: undefined reference to symbol '_ZN10QArrayData10deallocateEPS_mm@@Qt_5'
self.requires("qt/[~5.15]", transitive_headers=True, transitive_libs=True)

def build_requirements(self):
if Version(self.version) >= "1.4.4":
Expand Down

0 comments on commit ebce50a

Please sign in to comment.