James
James
> For the proof of concept with conan , can i Build wih build_type=None , will that work ? As right now we are still in the proof of concept...
But this seems more an issue of the https://github.com/qtwebkit/qtwebkit/wiki/Building-QtWebKit-on-Windows specific project than Conan itself. We don't maintain the icu/65.1@qtproject/stable package, but Qt does. Have you reported in their repos? Do...
Yes, bintray was closed more than 1 year ago, if the packages were back then in bintray, they won't be found anymore. You still have defined a ``qtproject`` remote (you...
Hi @radonish I suspect that the lockfile that is being downloaded from Artifactory is mutated by the process itself. When a lockfile is incomplete, for example, because it locks a...
Hi @stackfun Thanks for reporting, the fix would be quite easy, do you want to give it a try? Also a note, in 2.0 the ``conan alias`` disappear in favor...
> ould you recommend that I address all generated conanfiles in my PR? It may no longer be as simple as changing from conans to from conan. Or should I...
Hi @blackk-foxx A couple of quick hints: - You don't want to use an option, if the final package binaries are not different (which typically shouldn't be for tests, unless...
Well, the ``cmake.test()`` wrapper is just a very thin layer, I think you can easily do something like ``self.run("ctest ...")`` to run the tests that you want, have you considered...
Hi @maitrey It is necessary to define in the package recipe the structure: ```python def package_info(self): self.cpp_info.includedirs = ["includes"] self.cpp_info.bindirs = ["tools"] ``` Otherwise the default ``include`` and ``bin`` folder...
The ``_PACKAGE_FOLDER_RELEASE`` variables are implementation details of the ``CMakeDeps`` generator, not intended to be used directly that way, but instead via the created targets via ``target_link_libraries(.... mypkg::mypkg)`` or something similar....