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
unfortunately private message is not allowed. I got a problem by using codeSynthesisXsdTool/4.0.0@Brunni/testing. This is a conan recipe you made ;) But does not have an own repository. So it wasn't possible to write the issue there ... Hope you get this message.
I have fixed a problem with codeSynthesisXsdTool/4.0.0@Brunni/testing and bin paths. By default conan will set the bin_path to exportedPackageFolder/bin but you exported the xsd.exe to exportedPackageFolder.
There are two Solutions:
change : self.copy("*.exe", dst="", src="extracted/xsd-4.0.0-i686-windows/bin") to self.copy("*.exe", dst="bin", src="extracted/xsd-4.0.0-i686-windows/bin")
or
add method def package_info(self): and add self.cpp_info.bindirs = [""]
both will fix the problem of wrong self.deps_cpp_info["codeSynthesisXsdTool"].bin_paths. My preferred option would be the first one ;)
The text was updated successfully, but these errors were encountered:
Hello,
unfortunately private message is not allowed. I got a problem by using codeSynthesisXsdTool/4.0.0@Brunni/testing. This is a conan recipe you made ;) But does not have an own repository. So it wasn't possible to write the issue there ... Hope you get this message.
I have fixed a problem with codeSynthesisXsdTool/4.0.0@Brunni/testing and bin paths. By default conan will set the
bin_path
toexportedPackageFolder
/bin but you exported the xsd.exe toexportedPackageFolder
.There are two Solutions:
self.copy("*.exe", dst="", src="extracted/xsd-4.0.0-i686-windows/bin")
toself.copy("*.exe", dst="bin", src="extracted/xsd-4.0.0-i686-windows/bin")
or
def package_info(self):
and addself.cpp_info.bindirs = [""]
both will fix the problem of wrong
self.deps_cpp_info["codeSynthesisXsdTool"].bin_paths
. My preferred option would be the first one ;)The text was updated successfully, but these errors were encountered: