Closed FannoFlow1 closed 1 month ago
Hi @FannoFlow1
Thanks for your question
In general, does conan create support creating a package from pre-built binaries from a conan build ?
No, the conan create
command is exactly for ensuring that a clean and isolated build in the cache is done.
I think you are looking for the conan export-pkg
, which is intended to create packages from binaries in the user space, both for when those binaries are pre-compiled closed source from a vendor, or even if you built those binaries with a local conan build
command.
Please check this page in the docs: https://docs.conan.io/2/tutorial/developing_packages/local_package_development_flow.html, it explains this use case.
Yep that looks like exactly what I'm looking for! thanks!
What is your question?
In general, does
conan create
support creating a package from pre-built binaries from aconan build
?The general workflow being:
Generally this is to ensure the binaries that were tested are the ones pushed to the released area / Artifactory.
Have you read the CONTRIBUTING guide?