Stadik
Stadik
Hey it works, I added this method by using your suggestions. ``` def upload_file_chunked(self, file, file_name, chunk_size=143217728): headers = {'X-RequestDigest': self.contextinfo['FormDigestValue']} content_path = os.path.abspath(file_name) content_size = os.stat(content_path).st_size index = 0...
Basically valgrind writes content into XML under both release and debug builds. But when generating html report or summary via ValgrindCI, it is correct for dbeug builds and shows 0...
adding before or after line 89 ``` set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION ${CONAN_FOUND_LIBRARY} IMPORTED_NO_SONAME ${no_soname_mode}) ``` Fixes the issue. I guess this means IMPORTED_LOCATION needs to be set for any IMPORTED target,...
With conan 2.0.4 it is working, seems this was changed in https://github.com/conan-io/conan/commit/113cf5a2875ff3f9e77981aa178772090f4680f4 Some remarks in the connected issue https://github.com/conan-io/conan/issues/13504 seem to be wrong on linux, like "The right thing is...
**"or a per-configuration equivalent."** this seems to be only true under certain conditions. After some testing I observed cmake won't throw CMP0111 when 1) When IMPORTED_LOCATION is set as explained...
I couldn't fully analyse this issue until know, but I explained roughly in https://github.com/conan-io/conan/pull/16705#issuecomment-2330988308 the process of how it generates issues. Following this, most important is that it needs to...
> Should I see that warning too? The warning simply comes because the CONAN_LIB::${package_name}_${_LIBRARY_NAME}${config_suffix} target seems to be a faulty target, there is no need to link it in any...
We have a cmake based dependency walker from a time before any of the options you mentioned existed, for this we probe IMPORTED_LOCATION, LOCATION or IMPORTED_LOCATION_CONFIG if CONFIGURATION_TYPES / IMPORTED_CONFIGURATIONS...