I used the following command to get a list of pre-built packages for the libpng library:
conan download libpng/1.6.40 -p "arch=x86_64 AND os=Windows AND compiler=msvc AND compiler.version=192" -r conancenter -f json
Besides other information, I get the following info:
"requires": [
"zlib/1.3.Z"
]
}
I get the path to the downloaded pre-built package like this:
conan cache path libpng/1.6.40:2dc71d849fb2a3eea8f4b3bf24e7117c93b68a8a (the last part being the package id from the conan download output).
How can I find out which exact version of zlib was used to build this pre-built libpng .lib file? The conan download information just gives me a Z for the last part of the version.
I also looked into conan graph info command, but couldn't figure out if this can help me.