Skip to content

Commit

Permalink
qt: fix ConanV2 compat on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Cogitri committed Jul 7, 2023
1 parent 6b0b36a commit 4ec89c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/qt/6.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def generate(self):
tc.variables["BUILD_WITH_PCH"]= "OFF" # disabling PCH to save disk space

if self.settings.os == "Windows":
tc.variables["HOST_PERL"] = getattr(self, "user_info_build", self.deps_user_info)["strawberryperl"].perl
tc.variables["HOST_PERL"] = self.dependencies.build["strawberryperl"].conf_info.get("user.strawberryperl:perl", check_type=str)
#"set(QT_EXTRA_INCLUDEPATHS ${CONAN_INCLUDE_DIRS})\n"
#"set(QT_EXTRA_DEFINES ${CONAN_DEFINES})\n"
#"set(QT_EXTRA_LIBDIRS ${CONAN_LIB_DIRS})\n"
Expand Down

0 comments on commit 4ec89c0

Please sign in to comment.