From 35367f9dd4f16196874982224c37988ca0170bcc Mon Sep 17 00:00:00 2001 From: memsharded Date: Fri, 13 Dec 2024 10:30:32 +0100 Subject: [PATCH 1/3] new CmakeDeps transitive linking fixes --- .../cmake/cmakedeps2/target_configuration.py | 45 +++++++++++++------ 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/conan/tools/cmake/cmakedeps2/target_configuration.py b/conan/tools/cmake/cmakedeps2/target_configuration.py index 15b95930a2f..7793072904e 100644 --- a/conan/tools/cmake/cmakedeps2/target_configuration.py +++ b/conan/tools/cmake/cmakedeps2/target_configuration.py @@ -34,17 +34,23 @@ def filename(self): return f"{f}-Targets{build}-{config}.cmake" def _requires(self, info, components): - result = [] + result = {} requires = info.parsed_requires() pkg_name = self._conanfile.ref.name transitive_reqs = self._cmakedeps.get_transitive_requires(self._conanfile) + + def _dep_type(dep_info): + return {str(PackageType.SHARED): "SHARED", + str(PackageType.STATIC): "STATIC", + str(PackageType.HEADER): "INTERFACE"}.get(str(dep_info.type)) + if not requires and not components: # global cpp_info without components definition # require the pkgname::pkgname base (user defined) or INTERFACE base target - targets = [] for d in transitive_reqs.values(): dep_target = self._cmakedeps.get_property("cmake_target_name", d) - targets.append(dep_target or f"{d.ref.name}::{d.ref.name}") - return targets + dep_target = dep_target or f"{d.ref.name}::{d.ref.name}" + result[dep_target] = {"type": _dep_type(d.cpp_info)} + return result for required_pkg, required_comp in requires: if required_pkg is None: # Points to a component of same package @@ -53,7 +59,7 @@ def _requires(self, info, components): dep_target = self._cmakedeps.get_property("cmake_target_name", self._conanfile, required_comp) dep_target = dep_target or f"{pkg_name}::{required_comp}" - result.append(dep_target) + result[dep_target] = {"type": _dep_type(dep_comp)} else: # Different package try: dep = transitive_reqs[required_pkg] @@ -71,7 +77,7 @@ def _requires(self, info, components): comp = required_comp dep_target = self._cmakedeps.get_property("cmake_target_name", dep, comp) dep_target = dep_target or f"{required_pkg}::{required_comp}" - result.append(dep_target) + result[dep_target] = {"type": _dep_type(dep_comp)} return result @property @@ -148,7 +154,8 @@ def _get_cmake_lib(self, info, components, pkg_folder, pkg_folder_var): includedirs = ";".join(self._path(i, pkg_folder, pkg_folder_var) for i in info.includedirs) if info.includedirs else "" - requires = " ".join(self._requires(info, components)) + requires = self._requires(info, components) + assert isinstance(requires, dict) defines = " ".join(info.defines) # TODO: Missing escaping? # TODO: Missing link language @@ -201,15 +208,14 @@ def _add_root_lib_target(self, libs, pkg_name, cpp_info): if libs and root_target_name not in libs: # Add a generic interface target for the package depending on the others if cpp_info.default_components is not None: - all_requires = [] + all_requires = {} for defaultc in cpp_info.default_components: target_name = self._cmakedeps.get_property("cmake_target_name", self._conanfile, defaultc) comp_name = target_name or f"{pkg_name}::{defaultc}" - all_requires.append(comp_name) - all_requires = " ".join(all_requires) + all_requires[comp_name] = {} # It is an interface, it doesn't matter else: - all_requires = " ".join(libs.keys()) + all_requires = {k: {} for k in libs.keys()} libs[root_target_name] = {"type": "INTERFACE", "requires": all_requires} @@ -341,13 +347,24 @@ def _template(self): set_target_properties({{lib}} PROPERTIES IMPORTED_IMPLIB_{{config}} "{{lib_info["link_location"]}}") {% endif %} - {% if lib_info.get("requires") %} - target_link_libraries({{lib}} INTERFACE {{lib_info["requires"]}}) - {% endif %} {% if lib_info.get("system_libs") %} target_link_libraries({{lib}} INTERFACE {{lib_info["system_libs"]}}) {% endif %} + # Information of transitive dependencies + {% for require_target, require_info in lib_info["requires"].items() %} + # Requirement {{require_target}} => {{require_info}} + {% if lib_info["type"] == "STATIC" %} + set_target_properties({{lib}} PROPERTIES INTERFACE_LINK_LIBRARIES + {{config_wrapper(config, require_target)}}) + {% elif lib_info["type"] == "SHARED" %} + set_target_properties({{lib}} PROPERTIES IMPORTED_LINK_DEPENDENT_LIBRARIES_{{config}} + {{require_target}}) + {% else %} + target_link_libraries({{lib}} INTERFACE {{require_target}}) + {% endif %} + {% endfor %} + {% endfor %} ################# Global variables for try compile and legacy ############## From a083b8acd6f8553e437afa69dfb187004c1d3d70 Mon Sep 17 00:00:00 2001 From: memsharded Date: Mon, 16 Dec 2024 10:28:12 +0100 Subject: [PATCH 2/3] wip --- .../cmake/cmakedeps2/target_configuration.py | 44 +- conans/model/build_info.py | 6 +- graph.json | 16016 ++++++++++++++++ .../cmake/cmakedeps/test_cmakedeps_new.py | 44 +- 4 files changed, 16090 insertions(+), 20 deletions(-) create mode 100644 graph.json diff --git a/conan/tools/cmake/cmakedeps2/target_configuration.py b/conan/tools/cmake/cmakedeps2/target_configuration.py index 7793072904e..626bed7a6ea 100644 --- a/conan/tools/cmake/cmakedeps2/target_configuration.py +++ b/conan/tools/cmake/cmakedeps2/target_configuration.py @@ -37,19 +37,27 @@ def _requires(self, info, components): result = {} requires = info.parsed_requires() pkg_name = self._conanfile.ref.name + pkg_type = info.type + assert isinstance(pkg_type, PackageType), f"Pkg type {pkg_type} {type(pkg_type)}" transitive_reqs = self._cmakedeps.get_transitive_requires(self._conanfile) - def _dep_type(dep_info): - return {str(PackageType.SHARED): "SHARED", - str(PackageType.STATIC): "STATIC", - str(PackageType.HEADER): "INTERFACE"}.get(str(dep_info.type)) + def _link_type(req): + if pkg_type is PackageType.STATIC: + if not req.libs: # not using the libs at all + if req.headers: + return "COMPILE_ONLY" + return None + else: + if req.headers: + return "FULL" + return "LINK_ONLY" if not requires and not components: # global cpp_info without components definition # require the pkgname::pkgname base (user defined) or INTERFACE base target - for d in transitive_reqs.values(): + for r, d in transitive_reqs.items(): dep_target = self._cmakedeps.get_property("cmake_target_name", d) dep_target = dep_target or f"{d.ref.name}::{d.ref.name}" - result[dep_target] = {"type": _dep_type(d.cpp_info)} + result[dep_target] = {"link_type": _link_type(r)} return result for required_pkg, required_comp in requires: @@ -59,10 +67,11 @@ def _dep_type(dep_info): dep_target = self._cmakedeps.get_property("cmake_target_name", self._conanfile, required_comp) dep_target = dep_target or f"{pkg_name}::{required_comp}" - result[dep_target] = {"type": _dep_type(dep_comp)} + result[dep_target] = {"link_type": "FULL"} else: # Different package try: - dep = transitive_reqs[required_pkg] + # FIXME: This can be a problem for packages with requires+tool-requires to same + r, dep = transitive_reqs._get(required_pkg) except KeyError: # The transitive dep might have been skipped pass else: @@ -77,12 +86,13 @@ def _dep_type(dep_info): comp = required_comp dep_target = self._cmakedeps.get_property("cmake_target_name", dep, comp) dep_target = dep_target or f"{required_pkg}::{required_comp}" - result[dep_target] = {"type": _dep_type(dep_comp)} + result[dep_target] = {"link_type": _link_type(r)} return result @property def _context(self): cpp_info = self._conanfile.cpp_info.deduce_full_cpp_info(self._conanfile) + assert isinstance(cpp_info.type, PackageType) pkg_name = self._conanfile.ref.name # fallback to consumer configuration if it doesn't have build_type config = self._conanfile.settings.get_safe("build_type", self._cmakedeps.configuration) @@ -158,10 +168,9 @@ def _get_cmake_lib(self, info, components, pkg_folder, pkg_folder_var): assert isinstance(requires, dict) defines = " ".join(info.defines) # TODO: Missing escaping? - # TODO: Missing link language # FIXME: Filter by lib traits!!!!! - if not self._require.headers: # If not depending on headers, paths and - includedirs = defines = None + #if not self._require.headers: # If not depending on headers, paths and + # includedirs = defines = None system_libs = " ".join(info.system_libs) target = {"type": "INTERFACE", "includedirs": includedirs, @@ -355,8 +364,19 @@ def _template(self): {% for require_target, require_info in lib_info["requires"].items() %} # Requirement {{require_target}} => {{require_info}} {% if lib_info["type"] == "STATIC" %} + {% if require_info["link_type"] == "COMPILE_ONLY" %} + if(${CMAKE_VERSION} VERSION_LESS "3.27") + message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.2") + endif() + set_target_properties({{lib}} PROPERTIES INTERFACE_LINK_LIBRARIES + $) + {% elif require_info["link_type"] == "FULL" %} set_target_properties({{lib}} PROPERTIES INTERFACE_LINK_LIBRARIES {{config_wrapper(config, require_target)}}) + {% endif %} {% elif lib_info["type"] == "SHARED" %} set_target_properties({{lib}} PROPERTIES IMPORTED_LINK_DEPENDENT_LIBRARIES_{{config}} {{require_target}}) diff --git a/conans/model/build_info.py b/conans/model/build_info.py index 98ea5aae6ac..f179b378467 100644 --- a/conans/model/build_info.py +++ b/conans/model/build_info.py @@ -593,13 +593,15 @@ def _find_matching(dirs, pattern): out.warning(f"Lib {libname} deduced as '{self._type}, but 'package_type={pkg_type}'") def deduce_locations(self, conanfile, component_name=""): + if self._type is None: # Get by default the package type of the recipe "package_type" + self._type = conanfile.package_type if self._exe: # exe is a new field, it should have the correct location return if self._location or self._link_location: if self._type is None or self._type is PackageType.HEADER: raise ConanException("Incorrect cpp_info defining location without type or header") return - if self._type not in [None, PackageType.SHARED, PackageType.STATIC, PackageType.APP]: + if self._type not in [PackageType.UNKNOWN, PackageType.SHARED, PackageType.STATIC, PackageType.APP]: return num_libs = len(self.libs) if num_libs == 0: @@ -798,7 +800,7 @@ def deduce_full_cpp_info(self, conanfile): common = self._package.clone() common.libs = [] - common.type = str(PackageType.HEADER) # the type of components is a string! + common.type = PackageType.HEADER # the type of components is a string! common.requires = list(result.components.keys()) + (self.requires or []) result.components["_common"] = common else: diff --git a/graph.json b/graph.json new file mode 100644 index 00000000000..5f1fe0ce213 --- /dev/null +++ b/graph.json @@ -0,0 +1,16016 @@ +{ + "graph": { + "nodes": { + "0": { + "ref": "conanfile", + "id": "0", + "recipe": "Cli", + "package_id": null, + "prev": null, + "rrev": null, + "rrev_timestamp": null, + "prev_timestamp": null, + "remote": null, + "binary_remote": null, + "build_id": null, + "binary": null, + "invalid_build": false, + "info_invalid": null, + "name": null, + "user": null, + "channel": null, + "url": null, + "license": null, + "author": null, + "description": null, + "homepage": null, + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": null, + "topics": null, + "package_type": "unknown", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": null, + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "cli", + "vendor": false, + "dependencies": { + "1": { + "ref": "opencv/4.10.0", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": null, + "visible": true + }, + "4": { + "ref": "protobuf/3.21.12", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "5": { + "ref": "ade/0.1.2d", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "9": { + "ref": "openexr/3.2.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "10": { + "ref": "imath/3.1.9", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "12": { + "ref": "libtiff/4.6.0", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "11": { + "ref": "libdeflate/1.19", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "6": { + "ref": "libjpeg/9e", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "14": { + "ref": "jbig/20160605", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "15": { + "ref": "zstd/1.5.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "18": { + "ref": "quirc/1.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "19": { + "ref": "ffmpeg/4.4.4", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "13": { + "ref": "xz_utils/5.4.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "21": { + "ref": "libiconv/1.17", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "23": { + "ref": "freetype/2.13.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "8": { + "ref": "libpng/1.6.44", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "20": { + "ref": "bzip2/1.0.8", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "24": { + "ref": "brotli/1.1.0", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "7": { + "ref": "openjpeg/2.5.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "30": { + "ref": "openh264/2.4.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "38": { + "ref": "vorbis/1.3.7", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "39": { + "ref": "ogg/1.3.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "40": { + "ref": "opus/1.4", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "41": { + "ref": "libx264/cci.20240224", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "45": { + "ref": "libx265/3.4", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "48": { + "ref": "libvpx/1.14.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "51": { + "ref": "libmp3lame/3.100", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "52": { + "ref": "libfdk_aac/2.0.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "16": { + "ref": "libwebp/1.3.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "53": { + "ref": "openssl/3.3.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "57": { + "ref": "libaom-av1/3.6.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "59": { + "ref": "dav1d/1.4.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "71": { + "ref": "tensorflow-lite/2.15.0", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": null, + "visible": true + }, + "72": { + "ref": "abseil/20230125.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "3": { + "ref": "eigen/3.4.0", + "run": false, + "libs": false, + "skip": true, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "73": { + "ref": "farmhash/cci.20190513", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "74": { + "ref": "fft/cci.20061228", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "75": { + "ref": "flatbuffers/23.5.26", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": null, + "visible": true + }, + "76": { + "ref": "gemmlowp/cci.20210928", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "77": { + "ref": "ruy/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "79": { + "ref": "intel-neon2sse/cci.20210225", + "run": false, + "libs": false, + "skip": true, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "80": { + "ref": "xnnpack/cci.20231026", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "78": { + "ref": "cpuinfo/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "83": { + "ref": "pthreadpool/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "81": { + "ref": "fp16/cci.20210320", + "run": false, + "libs": false, + "skip": true, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "82": { + "ref": "psimd/cci.20200517", + "run": false, + "libs": false, + "skip": true, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + }, + "84": { + "ref": "fxdiv/cci.20200417", + "run": false, + "libs": false, + "skip": true, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + } + }, + "context": "host", + "test": false + }, + "1": { + "ref": "opencv/4.10.0#9746006daba89d1a1e674831d9bbfcff", + "id": "1", + "recipe": "Downloaded", + "package_id": "17a90118883474477cab63d57e7845ba15377855", + "prev": "a9c6a4350dd9f87ae4e40b8182ea2883", + "rrev": "9746006daba89d1a1e674831d9bbfcff", + "rrev_timestamp": 1733256045.42, + "prev_timestamp": 1733259526.918, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "opencv", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "OpenCV (Open Source Computer Vision Library)", + "homepage": "https://opencv.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "parallel": false, + "with_ipp": false, + "with_eigen": true, + "neon": true, + "with_opencl": false, + "with_cuda": false, + "with_cublas": false, + "with_cufft": false, + "with_cudnn": false, + "cuda_arch_bin": null, + "cpu_baseline": null, + "cpu_dispatch": null, + "world": false, + "nonfree": false, + "with_flatbuffers": true, + "with_protobuf": true, + "with_vulkan": false, + "dnn_cuda": false, + "with_gtk": false, + "with_qt": false, + "with_wayland": true, + "with_avif": false, + "with_jpeg": "libjpeg", + "with_png": true, + "with_tiff": true, + "with_jpeg2000": "openjpeg", + "with_openexr": true, + "with_webp": true, + "with_gdal": false, + "with_gdcm": false, + "with_imgcodec_hdr": true, + "with_imgcodec_pfm": true, + "with_imgcodec_pxm": true, + "with_imgcodec_sunraster": true, + "with_msmf": true, + "with_msmf_dxva": true, + "with_quirc": true, + "with_ffmpeg": true, + "with_v4l": false, + "with_tesseract": true, + "contrib": "deprecated", + "contrib_freetype": "deprecated", + "contrib_sfm": "deprecated", + "with_ade": "deprecated", + "calib3d": true, + "dnn": true, + "features2d": true, + "flann": true, + "gapi": true, + "highgui": true, + "imgcodecs": true, + "imgproc": true, + "ml": true, + "objdetect": true, + "photo": true, + "stitching": true, + "video": true, + "videoio": true, + "alphamat": false, + "aruco": false, + "barcode": false, + "bgsegm": false, + "bioinspired": false, + "ccalib": false, + "cudaarithm": false, + "cudabgsegm": false, + "cudacodec": false, + "cudafeatures2d": false, + "cudafilters": false, + "cudaimgproc": false, + "cudalegacy": false, + "cudaobjdetect": false, + "cudaoptflow": false, + "cudastereo": false, + "cudawarping": false, + "cvv": false, + "datasets": false, + "dnn_objdetect": false, + "dnn_superres": false, + "dpm": false, + "face": false, + "freetype": false, + "fuzzy": false, + "hdf": false, + "hfs": false, + "img_hash": false, + "intensity_transform": false, + "line_descriptor": false, + "mcc": false, + "optflow": false, + "ovis": false, + "phase_unwrapping": false, + "plot": false, + "quality": false, + "rapid": false, + "reg": false, + "rgbd": false, + "saliency": false, + "sfm": false, + "shape": false, + "stereo": false, + "structured_light": false, + "superres": false, + "surface_matching": false, + "text": false, + "tracking": false, + "videostab": false, + "viz": false, + "wechat_qrcode": false, + "xfeatures2d": false, + "ximgproc": false, + "xobjdetect": false, + "xphoto": false + }, + "options_description": null, + "version": "4.10.0", + "topics": [ + "computer-vision", + "deep-learning", + "image-processing" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "alphamat": "False", + "aruco": "False", + "bgsegm": "False", + "bioinspired": "False", + "calib3d": "True", + "ccalib": "False", + "contrib": "deprecated", + "contrib_freetype": "deprecated", + "contrib_sfm": "deprecated", + "cpu_baseline": "None", + "cpu_dispatch": "None", + "cudaarithm": "False", + "cudabgsegm": "False", + "cudacodec": "False", + "cudafeatures2d": "False", + "cudafilters": "False", + "cudaimgproc": "False", + "cudalegacy": "False", + "cudaobjdetect": "False", + "cudaoptflow": "False", + "cudastereo": "False", + "cudawarping": "False", + "cvv": "False", + "datasets": "False", + "dnn": "True", + "dnn_objdetect": "False", + "dnn_superres": "False", + "dpm": "False", + "face": "False", + "features2d": "True", + "flann": "True", + "freetype": "False", + "fuzzy": "False", + "gapi": "True", + "hdf": "False", + "hfs": "False", + "highgui": "True", + "img_hash": "False", + "imgcodecs": "True", + "imgproc": "True", + "intensity_transform": "False", + "line_descriptor": "False", + "mcc": "False", + "ml": "True", + "nonfree": "False", + "objdetect": "True", + "optflow": "False", + "ovis": "False", + "parallel": "False", + "phase_unwrapping": "False", + "photo": "True", + "plot": "False", + "quality": "False", + "rapid": "False", + "reg": "False", + "rgbd": "False", + "saliency": "False", + "sfm": "False", + "shape": "False", + "shared": "False", + "stereo": "False", + "stitching": "True", + "structured_light": "False", + "superres": "False", + "surface_matching": "False", + "text": "False", + "tracking": "False", + "video": "True", + "videoio": "True", + "videostab": "False", + "viz": "False", + "wechat_qrcode": "False", + "with_ade": "deprecated", + "with_avif": "False", + "with_cuda": "False", + "with_eigen": "True", + "with_ffmpeg": "True", + "with_flatbuffers": "True", + "with_gdal": "False", + "with_gdcm": "False", + "with_imgcodec_hdr": "True", + "with_imgcodec_pfm": "True", + "with_imgcodec_pxm": "True", + "with_imgcodec_sunraster": "True", + "with_ipp": "False", + "with_jpeg": "libjpeg", + "with_jpeg2000": "openjpeg", + "with_msmf": "True", + "with_msmf_dxva": "True", + "with_opencl": "False", + "with_openexr": "True", + "with_png": "True", + "with_protobuf": "True", + "with_qt": "False", + "with_quirc": "True", + "with_tiff": "True", + "with_vulkan": "False", + "with_webp": "True", + "world": "False", + "xfeatures2d": "False", + "ximgproc": "False", + "xobjdetect": "False", + "xphoto": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "parallel": [ + "False", + "tbb", + "openmp", + "ANY" + ], + "with_ipp": [ + "False", + "intel-ipp", + "opencv-icv", + "ANY" + ], + "with_eigen": [ + "True", + "False", + "ANY" + ], + "with_opencl": [ + "True", + "False", + "ANY" + ], + "with_cuda": [ + "True", + "False", + "ANY" + ], + "cpu_baseline": [ + null, + "ANY", + "ANY" + ], + "cpu_dispatch": [ + null, + "ANY", + "ANY" + ], + "world": [ + "True", + "False", + "ANY" + ], + "nonfree": [ + "True", + "False", + "ANY" + ], + "with_flatbuffers": [ + "True", + "False", + "ANY" + ], + "with_protobuf": [ + "True", + "False", + "ANY" + ], + "with_vulkan": [ + "True", + "False", + "ANY" + ], + "with_qt": [ + "True", + "False", + "ANY" + ], + "with_avif": [ + "True", + "False", + "ANY" + ], + "with_jpeg": [ + "False", + "libjpeg", + "libjpeg-turbo", + "mozjpeg", + "ANY" + ], + "with_png": [ + "True", + "False", + "ANY" + ], + "with_tiff": [ + "True", + "False", + "ANY" + ], + "with_jpeg2000": [ + "False", + "jasper", + "openjpeg", + "ANY" + ], + "with_openexr": [ + "True", + "False", + "ANY" + ], + "with_webp": [ + "True", + "False", + "ANY" + ], + "with_gdal": [ + "True", + "False", + "ANY" + ], + "with_gdcm": [ + "True", + "False", + "ANY" + ], + "with_imgcodec_hdr": [ + "True", + "False", + "ANY" + ], + "with_imgcodec_pfm": [ + "True", + "False", + "ANY" + ], + "with_imgcodec_pxm": [ + "True", + "False", + "ANY" + ], + "with_imgcodec_sunraster": [ + "True", + "False", + "ANY" + ], + "with_msmf": [ + "True", + "False", + "ANY" + ], + "with_msmf_dxva": [ + "True", + "False", + "ANY" + ], + "with_quirc": [ + "True", + "False", + "ANY" + ], + "with_ffmpeg": [ + "True", + "False", + "ANY" + ], + "contrib": [ + "True", + "False", + "deprecated", + "ANY" + ], + "contrib_freetype": [ + "True", + "False", + "deprecated", + "ANY" + ], + "contrib_sfm": [ + "True", + "False", + "deprecated", + "ANY" + ], + "with_ade": [ + "True", + "False", + "deprecated", + "ANY" + ], + "calib3d": [ + "True", + "False", + "ANY" + ], + "dnn": [ + "True", + "False", + "ANY" + ], + "features2d": [ + "True", + "False", + "ANY" + ], + "flann": [ + "True", + "False", + "ANY" + ], + "gapi": [ + "True", + "False", + "ANY" + ], + "highgui": [ + "True", + "False", + "ANY" + ], + "imgcodecs": [ + "True", + "False", + "ANY" + ], + "imgproc": [ + "True", + "False", + "ANY" + ], + "ml": [ + "True", + "False", + "ANY" + ], + "objdetect": [ + "True", + "False", + "ANY" + ], + "photo": [ + "True", + "False", + "ANY" + ], + "stitching": [ + "True", + "False", + "ANY" + ], + "video": [ + "True", + "False", + "ANY" + ], + "videoio": [ + "True", + "False", + "ANY" + ], + "alphamat": [ + "True", + "False", + "ANY" + ], + "aruco": [ + "True", + "False", + "ANY" + ], + "bgsegm": [ + "True", + "False", + "ANY" + ], + "bioinspired": [ + "True", + "False", + "ANY" + ], + "ccalib": [ + "True", + "False", + "ANY" + ], + "cudaarithm": [ + "True", + "False", + "ANY" + ], + "cudabgsegm": [ + "True", + "False", + "ANY" + ], + "cudacodec": [ + "True", + "False", + "ANY" + ], + "cudafeatures2d": [ + "True", + "False", + "ANY" + ], + "cudafilters": [ + "True", + "False", + "ANY" + ], + "cudaimgproc": [ + "True", + "False", + "ANY" + ], + "cudalegacy": [ + "True", + "False", + "ANY" + ], + "cudaobjdetect": [ + "True", + "False", + "ANY" + ], + "cudaoptflow": [ + "True", + "False", + "ANY" + ], + "cudastereo": [ + "True", + "False", + "ANY" + ], + "cudawarping": [ + "True", + "False", + "ANY" + ], + "cvv": [ + "True", + "False", + "ANY" + ], + "datasets": [ + "True", + "False", + "ANY" + ], + "dnn_objdetect": [ + "True", + "False", + "ANY" + ], + "dnn_superres": [ + "True", + "False", + "ANY" + ], + "dpm": [ + "True", + "False", + "ANY" + ], + "face": [ + "True", + "False", + "ANY" + ], + "freetype": [ + "True", + "False", + "ANY" + ], + "fuzzy": [ + "True", + "False", + "ANY" + ], + "hdf": [ + "True", + "False", + "ANY" + ], + "hfs": [ + "True", + "False", + "ANY" + ], + "img_hash": [ + "True", + "False", + "ANY" + ], + "intensity_transform": [ + "True", + "False", + "ANY" + ], + "line_descriptor": [ + "True", + "False", + "ANY" + ], + "mcc": [ + "True", + "False", + "ANY" + ], + "optflow": [ + "True", + "False", + "ANY" + ], + "ovis": [ + "True", + "False", + "ANY" + ], + "phase_unwrapping": [ + "True", + "False", + "ANY" + ], + "plot": [ + "True", + "False", + "ANY" + ], + "quality": [ + "True", + "False", + "ANY" + ], + "rapid": [ + "True", + "False", + "ANY" + ], + "reg": [ + "True", + "False", + "ANY" + ], + "rgbd": [ + "True", + "False", + "ANY" + ], + "saliency": [ + "True", + "False", + "ANY" + ], + "sfm": [ + "True", + "False", + "ANY" + ], + "shape": [ + "True", + "False", + "ANY" + ], + "stereo": [ + "True", + "False", + "ANY" + ], + "structured_light": [ + "True", + "False", + "ANY" + ], + "superres": [ + "True", + "False", + "ANY" + ], + "surface_matching": [ + "True", + "False", + "ANY" + ], + "text": [ + "True", + "False", + "ANY" + ], + "tracking": [ + "True", + "False", + "ANY" + ], + "videostab": [ + "True", + "False", + "ANY" + ], + "viz": [ + "True", + "False", + "ANY" + ], + "wechat_qrcode": [ + "True", + "False", + "ANY" + ], + "xfeatures2d": [ + "True", + "False", + "ANY" + ], + "ximgproc": [ + "True", + "False", + "ANY" + ], + "xobjdetect": [ + "True", + "False", + "ANY" + ], + "xphoto": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\opencf781c3ced090c\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "opencv/4.10.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "alphamat": "False", + "aruco": "False", + "bgsegm": "False", + "bioinspired": "False", + "calib3d": "True", + "ccalib": "False", + "cpu_baseline": null, + "cpu_dispatch": null, + "cudaarithm": "False", + "cudabgsegm": "False", + "cudacodec": "False", + "cudafeatures2d": "False", + "cudafilters": "False", + "cudaimgproc": "False", + "cudalegacy": "False", + "cudaobjdetect": "False", + "cudaoptflow": "False", + "cudastereo": "False", + "cudawarping": "False", + "cvv": "False", + "datasets": "False", + "dnn": "True", + "dnn_objdetect": "False", + "dnn_superres": "False", + "dpm": "False", + "face": "False", + "features2d": "True", + "flann": "True", + "freetype": "False", + "fuzzy": "False", + "gapi": "True", + "hdf": "False", + "hfs": "False", + "highgui": "True", + "img_hash": "False", + "imgcodecs": "True", + "imgproc": "True", + "intensity_transform": "False", + "line_descriptor": "False", + "mcc": "False", + "ml": "True", + "nonfree": "False", + "objdetect": "True", + "optflow": "False", + "ovis": "False", + "parallel": "False", + "phase_unwrapping": "False", + "photo": "True", + "plot": "False", + "quality": "False", + "rapid": "False", + "reg": "False", + "rgbd": "False", + "saliency": "False", + "sfm": "False", + "shape": "False", + "shared": "False", + "stereo": "False", + "stitching": "True", + "structured_light": "False", + "superres": "False", + "surface_matching": "False", + "text": "False", + "tracking": "False", + "video": "True", + "videoio": "True", + "videostab": "False", + "viz": "False", + "wechat_qrcode": "False", + "with_avif": "False", + "with_cuda": "False", + "with_eigen": "True", + "with_ffmpeg": "True", + "with_flatbuffers": "True", + "with_gdal": "False", + "with_gdcm": "False", + "with_imgcodec_hdr": "True", + "with_imgcodec_pfm": "True", + "with_imgcodec_pxm": "True", + "with_imgcodec_sunraster": "True", + "with_ipp": "False", + "with_jpeg": "libjpeg", + "with_jpeg2000": "openjpeg", + "with_msmf": "True", + "with_msmf_dxva": "True", + "with_opencl": "False", + "with_openexr": "True", + "with_png": "True", + "with_protobuf": "True", + "with_qt": "False", + "with_quirc": "True", + "with_tiff": "True", + "with_vulkan": "False", + "with_webp": "True", + "world": "False", + "xfeatures2d": "False", + "ximgproc": "False", + "xobjdetect": "False", + "xphoto": "False" + }, + "requires": [ + "eigen/3.4.0#2e192482a8acff96fe34766adca2b24c:da39a3ee5e6b4b0d3255bfef95601890afd80709", + "protobuf/3.21.Z", + "ade/0.1.Z", + "openexr/3.2.Z", + "imath/3.1.Z", + "libtiff/4.6.Z", + "libdeflate/1.19.Z", + "libjpeg/9e", + "jbig/20160605.0.Z", + "zstd/1.5.Z", + "quirc/1.2.Z", + "ffmpeg/4.4.Z", + "xz_utils/5.4.Z", + "libiconv/1.17.Z", + "freetype/2.13.Z", + "libpng/1.6.Z", + "bzip2/1.0.Z", + "brotli/1.1.Z", + "openjpeg/2.5.Z", + "openh264/2.4.Z", + "vorbis/1.3.Z", + "ogg/1.3.Z", + "opus/1.4.Z", + "libx264/cci", + "libx265/3.4.Z", + "libvpx/1.14.Z", + "libmp3lame/3.100.Z", + "libfdk_aac/2.0.Z", + "libwebp/1.3.Z", + "openssl/3.3.Z", + "zlib/1.3.Z", + "libaom-av1/3.6.Z", + "dav1d/1.4.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "3": { + "ref": "eigen/3.4.0", + "run": false, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + }, + "4": { + "ref": "protobuf/3.21.12", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": true, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "5": { + "ref": "ade/0.1.2d", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "9": { + "ref": "openexr/3.2.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "10": { + "ref": "imath/3.1.9", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "12": { + "ref": "libtiff/4.6.0", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "11": { + "ref": "libdeflate/1.19", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "6": { + "ref": "libjpeg/9e", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "14": { + "ref": "jbig/20160605", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "15": { + "ref": "zstd/1.5.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "18": { + "ref": "quirc/1.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "19": { + "ref": "ffmpeg/4.4.4", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "13": { + "ref": "xz_utils/5.4.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "21": { + "ref": "libiconv/1.17", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "23": { + "ref": "freetype/2.13.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "8": { + "ref": "libpng/1.6.44", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "20": { + "ref": "bzip2/1.0.8", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "24": { + "ref": "brotli/1.1.0", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "7": { + "ref": "openjpeg/2.5.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "30": { + "ref": "openh264/2.4.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "38": { + "ref": "vorbis/1.3.7", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "39": { + "ref": "ogg/1.3.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "40": { + "ref": "opus/1.4", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "41": { + "ref": "libx264/cci.20240224", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "45": { + "ref": "libx265/3.4", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "48": { + "ref": "libvpx/1.14.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "51": { + "ref": "libmp3lame/3.100", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "52": { + "ref": "libfdk_aac/2.0.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "16": { + "ref": "libwebp/1.3.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "53": { + "ref": "openssl/3.3.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": true, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "57": { + "ref": "libaom-av1/3.6.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "59": { + "ref": "dav1d/1.4.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "69": { + "ref": "protobuf/3.21.12", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "2": { + "ref": "zlib/1.3.1#b8bc2603263cf7eccbd6e17e66b0ed76", + "id": "2", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "79ec8125ebd42591897da4cf270e6146", + "rrev": "b8bc2603263cf7eccbd6e17e66b0ed76", + "rrev_timestamp": 1733936244.862, + "prev_timestamp": 1733936492.457, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "zlib", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Zlib", + "author": null, + "description": "A Massively Spiffy Yet Delicately Unobtrusive Compression Library (Also Free, Not to Mention Unencumbered by Patents)", + "homepage": "https://zlib.net", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "1.3.1", + "topics": [ + "zlib", + "compression" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\zlib204752602052d\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "zlib/1.3.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "3": { + "ref": "eigen/3.4.0#2e192482a8acff96fe34766adca2b24c", + "id": "3", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "b2e7c2d86c5d1dbefc534889aa72e12c", + "rrev": "2e192482a8acff96fe34766adca2b24c", + "rrev_timestamp": 1680436083.8, + "prev_timestamp": 1680436317.005, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "eigen", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "MPL-2.0", + "LGPL-3.0-or-later" + ], + "author": null, + "description": "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms.", + "homepage": "http://eigen.tuxfamily.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "MPL2_only": false + }, + "options_description": null, + "version": "3.4.0", + "topics": [ + "algebra", + "linear-algebra", + "matrix", + "vector", + "numerical", + "header-only" + ], + "package_type": "header-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "MPL2_only": "False" + }, + "options_definitions": { + "MPL2_only": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\eigenecaf3dc594b0c\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "eigen/3.4.0", + "info": {}, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "4": { + "ref": "protobuf/3.21.12#d1ddaac72b361494fe277377dbfe94c7", + "id": "4", + "recipe": "Downloaded", + "package_id": "9a546d3c2c7b2b02ebec30698e8536173849d86f", + "prev": "8ff84e2093c206244b0b01fab5b9d4db", + "rrev": "d1ddaac72b361494fe277377dbfe94c7", + "rrev_timestamp": 1732221817.822, + "prev_timestamp": 1732281685.725, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "protobuf", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "Protocol Buffers - Google's data interchange format", + "homepage": "https://github.com/protocolbuffers/protobuf", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "with_zlib": true, + "with_rtti": true, + "lite": false, + "upb": false, + "debug_suffix": true + }, + "options_description": null, + "version": "3.21.12", + "topics": [ + "protocol-buffers", + "protocol-compiler", + "serialization", + "rpc", + "protocol-compiler" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "debug_suffix": "True", + "lite": "False", + "shared": "False", + "with_rtti": "True", + "with_zlib": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "with_zlib": [ + "True", + "False", + "ANY" + ], + "with_rtti": [ + "True", + "False", + "ANY" + ], + "lite": [ + "True", + "False", + "ANY" + ], + "debug_suffix": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\protoe97b0f2d4b3d3\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "protobuf/3.21.12", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "debug_suffix": "True", + "lite": "False", + "shared": "False", + "with_rtti": "True", + "with_zlib": "True" + }, + "requires": [ + "zlib/1.3.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + } + }, + "context": "host", + "test": false + }, + "5": { + "ref": "ade/0.1.2d#f225d0a218a7c9fbb81746806c7de53d", + "id": "5", + "recipe": "Downloaded", + "package_id": "c13a22a41ecd72caf9e556f68b406569547e0861", + "prev": "b78b0d2439efcd647ad21fbe8ccb0487", + "rrev": "f225d0a218a7c9fbb81746806c7de53d", + "rrev_timestamp": 1697752528.048, + "prev_timestamp": 1697777067.164, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "ade", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Graph construction, manipulation, and processing framework", + "homepage": "https://github.com/opencv/ade", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "fPIC": true + }, + "options_description": null, + "version": "0.1.2d", + "topics": [ + "graphs", + "opencv" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ade3cb58bebe9d3b\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ade/0.1.2d", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "6": { + "ref": "libjpeg/9e#ebca87d1efc798db99cc9bbe2297679a", + "id": "6", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "0d8c8743142059b2fdb30102da469d3c", + "rrev": "ebca87d1efc798db99cc9bbe2297679a", + "rrev_timestamp": 1723665906.622, + "prev_timestamp": 1723667924.895, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libjpeg", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "IJG", + "author": null, + "description": "Libjpeg is a widely used C library for reading and writing JPEG image files.", + "homepage": "http://ijg.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "9e", + "topics": [ + "image", + "format", + "jpg", + "jpeg", + "picture", + "multimedia", + "graphics" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libjpaa8953bc7a0bb\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libjpeg/9e", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "7": { + "ref": "openjpeg/2.5.2#6f7b733e151d1bbf5ed05cbabb846828", + "id": "7", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "cb7dcba0a6fa99dfe7b8521bc8d339d2", + "rrev": "6f7b733e151d1bbf5ed05cbabb846828", + "rrev_timestamp": 1709653017.024, + "prev_timestamp": 1709654154.624, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "openjpeg", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "OpenJPEG is an open-source JPEG 2000 codec written in C language.", + "homepage": "https://github.com/uclouvain/openjpeg", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "build_codec": false + }, + "options_description": null, + "version": "2.5.2", + "topics": [ + "jpeg2000", + "jp2", + "openjpeg", + "image", + "multimedia", + "format", + "graphics" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "build_codec": "False", + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "build_codec": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\openj67fd16e1c0b40\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "openjpeg/2.5.2", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "8": { + "ref": "libpng/1.6.44#9e1aa08fb46946c7c91e4ae03bd49811", + "id": "8", + "recipe": "Downloaded", + "package_id": "e0d2306461d10438fbd847f0556a0f0ac5653d3a", + "prev": "aae40fd00dee0d85633d5a33c7be64b9", + "rrev": "9e1aa08fb46946c7c91e4ae03bd49811", + "rrev_timestamp": 1726517437.225, + "prev_timestamp": 1726518732.95, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libpng", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "libpng-2.0", + "author": null, + "description": "libpng is the official PNG file format reference library.", + "homepage": "http://www.libpng.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "neon": true, + "msa": true, + "sse": true, + "vsx": true, + "api_prefix": "" + }, + "options_description": null, + "version": "1.6.44", + "topics": [ + "png", + "graphics", + "image" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "api_prefix": "", + "shared": "False", + "sse": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "sse": [ + "True", + "False", + "ANY" + ], + "api_prefix": [ + "ANY", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libpn96b6230f1a784\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libpng/1.6.44", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "api_prefix": "", + "shared": "False", + "sse": "True" + }, + "requires": [ + "zlib/1.3.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + } + }, + "context": "host", + "test": false + }, + "9": { + "ref": "openexr/3.2.3#9729562cfe706ed8d5a9a7f398d09eab", + "id": "9", + "recipe": "Downloaded", + "package_id": "813bcfcaffb93e3d0c170007e643e0d8d07e98e1", + "prev": "1d3ea356d68e451e635317e7f3c994d2", + "rrev": "9729562cfe706ed8d5a9a7f398d09eab", + "rrev_timestamp": 1727884743.243, + "prev_timestamp": 1727886260.516, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "openexr", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.", + "homepage": "https://github.com/AcademySoftwareFoundation/openexr", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "3.2.3", + "topics": [ + "openexr", + "hdr", + "image", + "picture" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\opene07dff185ed11c\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "openexr/3.2.3", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "requires": [ + "zlib/1.3.Z", + "imath/3.1.Z", + "libdeflate/1.19.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "10": { + "ref": "imath/3.1.9", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": true, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "11": { + "ref": "libdeflate/1.19", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + } + }, + "context": "host", + "test": false + }, + "10": { + "ref": "imath/3.1.9#2e7f5802b247baae47235b4c8d5642c9", + "id": "10", + "recipe": "Downloaded", + "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", + "prev": "4d80d6bd068a78efcf6449d464489308", + "rrev": "2e7f5802b247baae47235b4c8d5642c9", + "rrev_timestamp": 1708982814.433, + "prev_timestamp": 1708984031.13, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "imath", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics.", + "homepage": "https://github.com/AcademySoftwareFoundation/Imath", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "3.1.9", + "topics": [ + "computer-graphics", + "matrix", + "openexr", + "3d-vector" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\imath3353ad56cbc60\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "imath/3.1.9", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "11": { + "ref": "libdeflate/1.19#3ea74a4549efc14d4b1202dc4bfbf602", + "id": "11", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "8770475aa00261bfaf612b6b29ef567a", + "rrev": "3ea74a4549efc14d4b1202dc4bfbf602", + "rrev_timestamp": 1694914376.803, + "prev_timestamp": 1694958185.555, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libdeflate", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MIT", + "author": null, + "description": "Heavily optimized library for DEFLATE/zlib/gzip compression and decompression.", + "homepage": "https://github.com/ebiggers/libdeflate", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "1.19", + "topics": [ + "compression", + "decompression", + "deflate", + "zlib", + "gzip" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libde5a709949339ac\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libdeflate/1.19", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "12": { + "ref": "libtiff/4.6.0#7abb55ba426a35793216db44d7e16eca", + "id": "12", + "recipe": "Downloaded", + "package_id": "023e7239966dab8ff6a097a53572c2d923350090", + "prev": "bdbc7fed932b6dc2ad46b25f7aaea931", + "rrev": "7abb55ba426a35793216db44d7e16eca", + "rrev_timestamp": 1732278951.205, + "prev_timestamp": 1732280380.194, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libtiff", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "libtiff", + "author": null, + "description": "Library for Tag Image File Format (TIFF)", + "homepage": "http://www.simplesystems.org/libtiff", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "lzma": true, + "jpeg": "libjpeg", + "zlib": true, + "libdeflate": true, + "zstd": true, + "jbig": true, + "webp": true, + "cxx": true + }, + "options_description": null, + "version": "4.6.0", + "topics": [ + "tiff", + "image", + "bigtiff", + "tagged-image-file-format" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "cxx": "True", + "jbig": "True", + "jpeg": "libjpeg", + "libdeflate": "True", + "lzma": "True", + "shared": "False", + "webp": "True", + "zlib": "True", + "zstd": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "lzma": [ + "True", + "False", + "ANY" + ], + "jpeg": [ + "False", + "libjpeg", + "libjpeg-turbo", + "mozjpeg", + "ANY" + ], + "zlib": [ + "True", + "False", + "ANY" + ], + "libdeflate": [ + "True", + "False", + "ANY" + ], + "zstd": [ + "True", + "False", + "ANY" + ], + "jbig": [ + "True", + "False", + "ANY" + ], + "webp": [ + "True", + "False", + "ANY" + ], + "cxx": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libtib334db11af335\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libtiff/4.6.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "cxx": "True", + "jbig": "True", + "jpeg": "libjpeg", + "libdeflate": "True", + "lzma": "True", + "shared": "False", + "webp": "True", + "zlib": "True", + "zstd": "True" + }, + "requires": [ + "zlib/1.3.Z", + "libdeflate/1.19.Z", + "xz_utils/5.4.Z", + "libjpeg/9e", + "jbig/20160605.0.Z", + "zstd/1.5.Z", + "libwebp/1.3.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "11": { + "ref": "libdeflate/1.19", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "13": { + "ref": "xz_utils/5.4.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "6": { + "ref": "libjpeg/9e", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "14": { + "ref": "jbig/20160605", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "15": { + "ref": "zstd/1.5.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "16": { + "ref": "libwebp/1.3.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "17": { + "ref": "cmake/3.31.0", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "13": { + "ref": "xz_utils/5.4.5#b885d1d79c9d30cff3803f7f551dbe66", + "id": "13", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "534dbf140c5987e252fe32deb9de8192", + "rrev": "b885d1d79c9d30cff3803f7f551dbe66", + "rrev_timestamp": 1724318972.064, + "prev_timestamp": 1724319967.389, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "xz_utils", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "Unlicense", + "LGPL-2.1-or-later", + "GPL-2.0-or-later", + "GPL-3.0-or-later" + ], + "author": null, + "description": "XZ Utils is free general-purpose data compression software with a high compression ratio. XZ Utils were written for POSIX-like systems, but also work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils.", + "homepage": "https://tukaani.org/xz", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "5.4.5", + "topics": [ + "lzma", + "xz", + "compression" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\xz_utc36de450e687d\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "xz_utils/5.4.5", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "14": { + "ref": "jbig/20160605#2d29fa02aacd76902e0d2cbbc24631ef", + "id": "14", + "recipe": "Downloaded", + "package_id": "98edcdfcd9fb7b473373eb7fe0d66af0e897e33e", + "prev": "15e80bf3d1dd518581ce57babc1260c3", + "rrev": "2d29fa02aacd76902e0d2cbbc24631ef", + "rrev_timestamp": 1676066289.194, + "prev_timestamp": 1686984021.59, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "jbig", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "GPL-2.0", + "author": null, + "description": "jbig for the Windows build of ImageMagick", + "homepage": "https://github.com/ImageMagick/jbig", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "build_executables": true + }, + "options_description": null, + "version": "20160605", + "topics": [ + "jbig", + "imagemagick", + "window", + "graphic" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "build_executables": "True", + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "build_executables": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\jbig3182ce73d79c8\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "jbig/20160605", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "build_executables": "True", + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "15": { + "ref": "zstd/1.5.5#1f239731dc45147c7fc2f54bfbde73df", + "id": "15", + "recipe": "Downloaded", + "package_id": "c60581f2463ba21c248b22570dc9f7e6dcb636f7", + "prev": "6fa725339a69a39ca227b554401b4d28", + "rrev": "1f239731dc45147c7fc2f54bfbde73df", + "rrev_timestamp": 1715599909.17, + "prev_timestamp": 1715600926.185, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "zstd", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "Zstandard - Fast real-time compression algorithm", + "homepage": "https://github.com/facebook/zstd", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "threading": true, + "build_programs": true + }, + "options_description": null, + "version": "1.5.5", + "topics": [ + "zstandard", + "compression", + "algorithm", + "decoder" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "build_programs": "True", + "shared": "False", + "threading": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "threading": [ + "True", + "False", + "ANY" + ], + "build_programs": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\zstdc952ff066366b\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "zstd/1.5.5", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "build_programs": "True", + "shared": "False", + "threading": "True" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "16": { + "ref": "libwebp/1.3.2#52f69c4a31c5cf033fdd9230d77a8e38", + "id": "16", + "recipe": "Downloaded", + "package_id": "653db3a579025ea1bd9ddbca1ed97a34042b07bc", + "prev": "e758295d7002a9bba78e7644fc8f4df0", + "rrev": "52f69c4a31c5cf033fdd9230d77a8e38", + "rrev_timestamp": 1694806992.059, + "prev_timestamp": 1694816088.898, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libwebp", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "Library to encode and decode images in WebP format", + "homepage": "https://chromium.googlesource.com/webm/libwebp", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "with_simd": true, + "near_lossless": true, + "swap_16bit_csp": false + }, + "options_description": null, + "version": "1.3.2", + "topics": [ + "image", + "libwebp", + "webp", + "decoding", + "encoding" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "near_lossless": "True", + "shared": "False", + "swap_16bit_csp": "False", + "with_simd": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "with_simd": [ + "True", + "False", + "ANY" + ], + "near_lossless": [ + "True", + "False", + "ANY" + ], + "swap_16bit_csp": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libwe32a5faf269811\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libwebp/1.3.2", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "near_lossless": "True", + "shared": "False", + "swap_16bit_csp": "False", + "with_simd": "True" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "17": { + "ref": "cmake/3.31.0#ba7dbf3b2fc9e70653b4c0fb5bbd2483", + "id": "17", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "0d3590c43637cae952cc4bad766ca336", + "rrev": "ba7dbf3b2fc9e70653b4c0fb5bbd2483", + "rrev_timestamp": 1731316134.743, + "prev_timestamp": 1731316345.308, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "cmake", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "CMake, the cross-platform, open-source build system.", + "homepage": "https://github.com/Kitware/CMake", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "3.31.0", + "topics": [ + "build", + "installer" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\cmake2b5bd88ef96af\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "cmake/3.31.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "18": { + "ref": "quirc/1.2#92179dd521786aea0729f2c859cbbcb9", + "id": "18", + "recipe": "Downloaded", + "package_id": "20029e17f0b8792b803e478a6a51139592160580", + "prev": "ca4e9e31e54ec55d8db06e8a2b70a6a2", + "rrev": "92179dd521786aea0729f2c859cbbcb9", + "rrev_timestamp": 1684855866.655, + "prev_timestamp": 1687018888.825, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "quirc", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "ISC", + "author": null, + "description": "QR decoder library", + "homepage": "https://github.com/dlbeer/quirc", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "max_regions": 254 + }, + "options_description": null, + "version": "1.2", + "topics": [ + "qr", + "decoder" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "max_regions": "254", + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "max_regions": [ + "254", + "65534", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\quirccaa783c72b092\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "quirc/1.2", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "max_regions": "254", + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "19": { + "ref": "ffmpeg/4.4.4#4a8420d12e27d959e07b23c9b06c650b", + "id": "19", + "recipe": "Downloaded", + "package_id": "3a197c11022a3a97fc968d82d3b952bba8d6e4d2", + "prev": "331a6a91c666eaf4953cb3e004b45db0", + "rrev": "4a8420d12e27d959e07b23c9b06c650b", + "rrev_timestamp": 1723789819.089, + "prev_timestamp": 1723800160.081, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "ffmpeg", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "LGPL-2.1-or-later", + "GPL-2.0-or-later" + ], + "author": null, + "description": "A complete, cross-platform solution to record, convert and stream audio and video", + "homepage": "https://ffmpeg.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": true, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "avdevice": true, + "avcodec": true, + "avformat": true, + "swresample": true, + "swscale": true, + "postproc": true, + "avfilter": true, + "with_asm": true, + "with_zlib": true, + "with_bzip2": true, + "with_lzma": true, + "with_libiconv": true, + "with_freetype": true, + "with_openjpeg": true, + "with_openh264": true, + "with_opus": true, + "with_vorbis": true, + "with_zeromq": false, + "with_sdl": false, + "with_libx264": true, + "with_libx265": true, + "with_libvpx": true, + "with_libmp3lame": true, + "with_libfdk_aac": true, + "with_libwebp": true, + "with_ssl": "openssl", + "with_libalsa": true, + "with_pulse": true, + "with_vaapi": true, + "with_vdpau": true, + "with_vulkan": false, + "with_xcb": true, + "with_appkit": true, + "with_avfoundation": true, + "with_coreimage": true, + "with_audiotoolbox": true, + "with_videotoolbox": true, + "with_programs": true, + "with_libsvtav1": true, + "with_libaom": true, + "with_libdav1d": true, + "with_libdrm": false, + "with_jni": false, + "with_mediacodec": false, + "with_xlib": true, + "disable_everything": false, + "disable_all_encoders": false, + "disable_encoders": null, + "enable_encoders": null, + "disable_all_decoders": false, + "disable_decoders": null, + "enable_decoders": null, + "disable_all_hardware_accelerators": false, + "disable_hardware_accelerators": null, + "enable_hardware_accelerators": null, + "disable_all_muxers": false, + "disable_muxers": null, + "enable_muxers": null, + "disable_all_demuxers": false, + "disable_demuxers": null, + "enable_demuxers": null, + "disable_all_parsers": false, + "disable_parsers": null, + "enable_parsers": null, + "disable_all_bitstream_filters": false, + "disable_bitstream_filters": null, + "enable_bitstream_filters": null, + "disable_all_protocols": false, + "disable_protocols": null, + "enable_protocols": null, + "disable_all_devices": false, + "disable_all_input_devices": false, + "disable_input_devices": null, + "enable_input_devices": null, + "disable_all_output_devices": false, + "disable_output_devices": null, + "enable_output_devices": null, + "disable_all_filters": false, + "disable_filters": null, + "enable_filters": null + }, + "options_description": null, + "version": "4.4.4", + "topics": [ + "multimedia", + "audio", + "video", + "encoder", + "decoder", + "encoding", + "decoding", + "transcoding", + "multiplexer", + "demultiplexer", + "streaming" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "avcodec": "True", + "avdevice": "True", + "avfilter": "True", + "avformat": "True", + "disable_all_bitstream_filters": "False", + "disable_all_decoders": "False", + "disable_all_demuxers": "False", + "disable_all_devices": "False", + "disable_all_encoders": "False", + "disable_all_filters": "False", + "disable_all_hardware_accelerators": "False", + "disable_all_input_devices": "False", + "disable_all_muxers": "False", + "disable_all_output_devices": "False", + "disable_all_parsers": "False", + "disable_all_protocols": "False", + "disable_bitstream_filters": "None", + "disable_decoders": "None", + "disable_demuxers": "None", + "disable_encoders": "None", + "disable_everything": "False", + "disable_filters": "None", + "disable_hardware_accelerators": "None", + "disable_input_devices": "None", + "disable_muxers": "None", + "disable_output_devices": "None", + "disable_parsers": "None", + "disable_protocols": "None", + "enable_bitstream_filters": "None", + "enable_decoders": "None", + "enable_demuxers": "None", + "enable_encoders": "None", + "enable_filters": "None", + "enable_hardware_accelerators": "None", + "enable_input_devices": "None", + "enable_muxers": "None", + "enable_output_devices": "None", + "enable_parsers": "None", + "enable_protocols": "None", + "postproc": "True", + "shared": "False", + "swresample": "True", + "swscale": "True", + "with_asm": "True", + "with_bzip2": "True", + "with_freetype": "True", + "with_libaom": "True", + "with_libdav1d": "True", + "with_libfdk_aac": "True", + "with_libiconv": "True", + "with_libmp3lame": "True", + "with_libvpx": "True", + "with_libwebp": "True", + "with_libx264": "True", + "with_libx265": "True", + "with_lzma": "True", + "with_openh264": "True", + "with_openjpeg": "True", + "with_opus": "True", + "with_programs": "True", + "with_sdl": "False", + "with_ssl": "openssl", + "with_vorbis": "True", + "with_zeromq": "False", + "with_zlib": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "avdevice": [ + "True", + "False", + "ANY" + ], + "avcodec": [ + "True", + "False", + "ANY" + ], + "avformat": [ + "True", + "False", + "ANY" + ], + "swresample": [ + "True", + "False", + "ANY" + ], + "swscale": [ + "True", + "False", + "ANY" + ], + "postproc": [ + "True", + "False", + "ANY" + ], + "avfilter": [ + "True", + "False", + "ANY" + ], + "with_asm": [ + "True", + "False", + "ANY" + ], + "with_zlib": [ + "True", + "False", + "ANY" + ], + "with_bzip2": [ + "True", + "False", + "ANY" + ], + "with_lzma": [ + "True", + "False", + "ANY" + ], + "with_libiconv": [ + "True", + "False", + "ANY" + ], + "with_freetype": [ + "True", + "False", + "ANY" + ], + "with_openjpeg": [ + "True", + "False", + "ANY" + ], + "with_openh264": [ + "True", + "False", + "ANY" + ], + "with_opus": [ + "True", + "False", + "ANY" + ], + "with_vorbis": [ + "True", + "False", + "ANY" + ], + "with_zeromq": [ + "True", + "False", + "ANY" + ], + "with_sdl": [ + "True", + "False", + "ANY" + ], + "with_libx264": [ + "True", + "False", + "ANY" + ], + "with_libx265": [ + "True", + "False", + "ANY" + ], + "with_libvpx": [ + "True", + "False", + "ANY" + ], + "with_libmp3lame": [ + "True", + "False", + "ANY" + ], + "with_libfdk_aac": [ + "True", + "False", + "ANY" + ], + "with_libwebp": [ + "True", + "False", + "ANY" + ], + "with_ssl": [ + "False", + "openssl", + "securetransport", + "ANY" + ], + "with_programs": [ + "True", + "False", + "ANY" + ], + "with_libaom": [ + "True", + "False", + "ANY" + ], + "with_libdav1d": [ + "True", + "False", + "ANY" + ], + "disable_everything": [ + "True", + "False", + "ANY" + ], + "disable_all_encoders": [ + "True", + "False", + "ANY" + ], + "disable_encoders": [ + null, + "ANY", + "ANY" + ], + "enable_encoders": [ + null, + "ANY", + "ANY" + ], + "disable_all_decoders": [ + "True", + "False", + "ANY" + ], + "disable_decoders": [ + null, + "ANY", + "ANY" + ], + "enable_decoders": [ + null, + "ANY", + "ANY" + ], + "disable_all_hardware_accelerators": [ + "True", + "False", + "ANY" + ], + "disable_hardware_accelerators": [ + null, + "ANY", + "ANY" + ], + "enable_hardware_accelerators": [ + null, + "ANY", + "ANY" + ], + "disable_all_muxers": [ + "True", + "False", + "ANY" + ], + "disable_muxers": [ + null, + "ANY", + "ANY" + ], + "enable_muxers": [ + null, + "ANY", + "ANY" + ], + "disable_all_demuxers": [ + "True", + "False", + "ANY" + ], + "disable_demuxers": [ + null, + "ANY", + "ANY" + ], + "enable_demuxers": [ + null, + "ANY", + "ANY" + ], + "disable_all_parsers": [ + "True", + "False", + "ANY" + ], + "disable_parsers": [ + null, + "ANY", + "ANY" + ], + "enable_parsers": [ + null, + "ANY", + "ANY" + ], + "disable_all_bitstream_filters": [ + "True", + "False", + "ANY" + ], + "disable_bitstream_filters": [ + null, + "ANY", + "ANY" + ], + "enable_bitstream_filters": [ + null, + "ANY", + "ANY" + ], + "disable_all_protocols": [ + "True", + "False", + "ANY" + ], + "disable_protocols": [ + null, + "ANY", + "ANY" + ], + "enable_protocols": [ + null, + "ANY", + "ANY" + ], + "disable_all_devices": [ + "True", + "False", + "ANY" + ], + "disable_all_input_devices": [ + "True", + "False", + "ANY" + ], + "disable_input_devices": [ + null, + "ANY", + "ANY" + ], + "enable_input_devices": [ + null, + "ANY", + "ANY" + ], + "disable_all_output_devices": [ + "True", + "False", + "ANY" + ], + "disable_output_devices": [ + null, + "ANY", + "ANY" + ], + "enable_output_devices": [ + null, + "ANY", + "ANY" + ], + "disable_all_filters": [ + "True", + "False", + "ANY" + ], + "disable_filters": [ + null, + "ANY", + "ANY" + ], + "enable_filters": [ + null, + "ANY", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ffmpe01b2d074a68ec\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ffmpeg/4.4.4", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "avcodec": "True", + "avdevice": "True", + "avfilter": "True", + "avformat": "True", + "disable_all_bitstream_filters": "False", + "disable_all_decoders": "False", + "disable_all_demuxers": "False", + "disable_all_devices": "False", + "disable_all_encoders": "False", + "disable_all_filters": "False", + "disable_all_hardware_accelerators": "False", + "disable_all_input_devices": "False", + "disable_all_muxers": "False", + "disable_all_output_devices": "False", + "disable_all_parsers": "False", + "disable_all_protocols": "False", + "disable_bitstream_filters": null, + "disable_decoders": null, + "disable_demuxers": null, + "disable_encoders": null, + "disable_everything": "False", + "disable_filters": null, + "disable_hardware_accelerators": null, + "disable_input_devices": null, + "disable_muxers": null, + "disable_output_devices": null, + "disable_parsers": null, + "disable_protocols": null, + "enable_bitstream_filters": null, + "enable_decoders": null, + "enable_demuxers": null, + "enable_encoders": null, + "enable_filters": null, + "enable_hardware_accelerators": null, + "enable_input_devices": null, + "enable_muxers": null, + "enable_output_devices": null, + "enable_parsers": null, + "enable_protocols": null, + "postproc": "True", + "shared": "False", + "swresample": "True", + "swscale": "True", + "with_asm": "True", + "with_bzip2": "True", + "with_freetype": "True", + "with_libaom": "True", + "with_libdav1d": "True", + "with_libfdk_aac": "True", + "with_libiconv": "True", + "with_libmp3lame": "True", + "with_libvpx": "True", + "with_libwebp": "True", + "with_libx264": "True", + "with_libx265": "True", + "with_lzma": "True", + "with_openh264": "True", + "with_openjpeg": "True", + "with_opus": "True", + "with_programs": "True", + "with_sdl": "False", + "with_ssl": "openssl", + "with_vorbis": "True", + "with_zeromq": "False", + "with_zlib": "True" + }, + "requires": [ + "xz_utils/5.4.Z", + "libiconv/1.17.Z", + "freetype/2.13.Z", + "libpng/1.6.Z", + "bzip2/1.0.Z", + "brotli/1.1.Z", + "openjpeg/2.5.Z", + "openh264/2.4.Z", + "vorbis/1.3.Z", + "ogg/1.3.Z", + "opus/1.4.Z", + "libx264/cci", + "libx265/3.4.Z", + "libvpx/1.14.Z", + "libmp3lame/3.100.Z", + "libfdk_aac/2.0.Z", + "libwebp/1.3.Z", + "openssl/3.3.Z", + "zlib/1.3.Z", + "libaom-av1/3.6.Z", + "dav1d/1.4.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "13": { + "ref": "xz_utils/5.4.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "21": { + "ref": "libiconv/1.17", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "23": { + "ref": "freetype/2.13.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "8": { + "ref": "libpng/1.6.44", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "20": { + "ref": "bzip2/1.0.8", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "24": { + "ref": "brotli/1.1.0", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "7": { + "ref": "openjpeg/2.5.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "30": { + "ref": "openh264/2.4.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "38": { + "ref": "vorbis/1.3.7", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "39": { + "ref": "ogg/1.3.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "40": { + "ref": "opus/1.4", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "41": { + "ref": "libx264/cci.20240224", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "45": { + "ref": "libx265/3.4", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "48": { + "ref": "libvpx/1.14.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "51": { + "ref": "libmp3lame/3.100", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "52": { + "ref": "libfdk_aac/2.0.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "16": { + "ref": "libwebp/1.3.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "53": { + "ref": "openssl/3.3.2", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "57": { + "ref": "libaom-av1/3.6.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "59": { + "ref": "dav1d/1.4.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "64": { + "ref": "yasm/1.3.0", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "65": { + "ref": "pkgconf/2.1.0", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "68": { + "ref": "msys2/cci.latest", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "20": { + "ref": "bzip2/1.0.8#d00dac990f08d991998d624be81a9526", + "id": "20", + "recipe": "Downloaded", + "package_id": "67bfcb7b4b78262b9d05495e479dcd92f747316b", + "prev": "e4aa22ae3a31782994f99b4be58625c9", + "rrev": "d00dac990f08d991998d624be81a9526", + "rrev_timestamp": 1724661266.998, + "prev_timestamp": 1724669283.426, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "bzip2", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "bzip2-1.0.8", + "author": null, + "description": "bzip2 is a free and open-source file compression program that uses the Burrows Wheeler algorithm.", + "homepage": "https://sourceware.org/bzip2", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "build_executable": true + }, + "options_description": null, + "version": "1.0.8", + "topics": [ + "data-compressor", + "file-compression" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "build_executable": "True", + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "build_executable": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\bzip22a75d000ecba1\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "bzip2/1.0.8", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "build_executable": "True", + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "21": { + "ref": "libiconv/1.17#73fefc1b696e069df90fd1d18aa63edd", + "id": "21", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "9ef92719f5c05dca2f0dbb46f50d3f8d", + "rrev": "73fefc1b696e069df90fd1d18aa63edd", + "rrev_timestamp": 1707122814.387, + "prev_timestamp": 1707124421.407, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libiconv", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "LGPL-2.1-or-later", + "author": null, + "description": "Convert text to and from Unicode", + "homepage": "https://www.gnu.org/software/libiconv/", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": true, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "1.17", + "topics": [ + "iconv", + "text", + "encoding", + "locale", + "unicode", + "conversion" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libic9912aaea08621\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libiconv/1.17", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "22": { + "ref": "msys2/cci.latest", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "22": { + "ref": "msys2/cci.latest#4927aa5502eb174e95df524f2be2685e", + "id": "22", + "recipe": "Downloaded", + "package_id": "956a88975bda9dfcc485e2861d71e74bd7e2b9a5", + "prev": "06ca1e71ba3ed86c0b2e116f4a63da61", + "rrev": "4927aa5502eb174e95df524f2be2685e", + "rrev_timestamp": 1732034252.89, + "prev_timestamp": 1732034681.324, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "msys2", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MSYS license", + "author": null, + "description": "MSYS2 is a software distro and building platform for Windows", + "homepage": "http://www.msys2.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "exclude_files": "*/link.exe", + "packages": "base-devel,binutils,gcc", + "additional_packages": null, + "no_kill": false + }, + "options_description": null, + "version": "cci.latest", + "topics": [ + "msys", + "unix", + "subsystem" + ], + "package_type": "unknown", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": { + "additional_packages": null, + "exclude_files": "*/link.exe", + "no_kill": "False", + "packages": "base-devel,binutils,gcc" + }, + "options_definitions": { + "exclude_files": [ + "ANY" + ], + "packages": [ + "ANY" + ], + "additional_packages": [ + null, + "ANY" + ], + "no_kill": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\msys2058ac8d7e56ba\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "msys2/cci.latest", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": { + "additional_packages": null, + "exclude_files": "*/link.exe", + "packages": "base-devel,binutils,gcc" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "23": { + "ref": "freetype/2.13.2#5d2563803c8558d4ef47271a82c73d20", + "id": "23", + "recipe": "Downloaded", + "package_id": "79f73b3fcb4ea3718b05e96b46594ae8f2ec3895", + "prev": "e9b07b14b986a38f75b0b42e3ea40f9e", + "rrev": "5d2563803c8558d4ef47271a82c73d20", + "rrev_timestamp": 1728736671.752, + "prev_timestamp": 1728737773.758, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "freetype", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "FTL", + "author": null, + "description": "FreeType is a freely available software library to render fonts.", + "homepage": "https://www.freetype.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "with_png": true, + "with_zlib": true, + "with_bzip2": true, + "with_brotli": true, + "subpixel": false + }, + "options_description": null, + "version": "2.13.2", + "topics": [ + "freetype", + "fonts" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False", + "subpixel": "False", + "with_brotli": "True", + "with_bzip2": "True", + "with_png": "True", + "with_zlib": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "with_png": [ + "True", + "False", + "ANY" + ], + "with_zlib": [ + "True", + "False", + "ANY" + ], + "with_bzip2": [ + "True", + "False", + "ANY" + ], + "with_brotli": [ + "True", + "False", + "ANY" + ], + "subpixel": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\freet21b8ad210d5f0\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "freetype/2.13.2", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False", + "subpixel": "False", + "with_brotli": "True", + "with_bzip2": "True", + "with_png": "True", + "with_zlib": "True" + }, + "requires": [ + "libpng/1.6.Z", + "zlib/1.3.Z", + "bzip2/1.0.Z", + "brotli/1.1.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "8": { + "ref": "libpng/1.6.44", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "20": { + "ref": "bzip2/1.0.8", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "24": { + "ref": "brotli/1.1.0", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "25": { + "ref": "meson/1.3.2", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "26": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "27": { + "ref": "pkgconf/2.1.0", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "24": { + "ref": "brotli/1.1.0#d56d7bb9ca722942aba17369cb5c0519", + "id": "24", + "recipe": "Downloaded", + "package_id": "75df3523cadfb3cb5a2c1cc2d61e8c640e1f9b96", + "prev": "249943a2756eb869cac284274651a4ab", + "rrev": "d56d7bb9ca722942aba17369cb5c0519", + "rrev_timestamp": 1696161049.808, + "prev_timestamp": 1696184730.92, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "brotli", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "MIT" + ], + "author": null, + "description": "Brotli compression format", + "homepage": "https://github.com/google/brotli", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "target_bits": null, + "endianness": null, + "enable_portable": false, + "enable_rbit": true, + "enable_debug": false, + "enable_log": false + }, + "options_description": null, + "version": "1.1.0", + "topics": [ + "brotli", + "compression" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "enable_debug": "False", + "enable_log": "False", + "enable_portable": "False", + "enable_rbit": "True", + "endianness": "None", + "shared": "False", + "target_bits": "None" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "target_bits": [ + "64", + "32", + null, + "ANY" + ], + "endianness": [ + "big", + "little", + "neutral", + null, + "ANY" + ], + "enable_portable": [ + "True", + "False", + "ANY" + ], + "enable_rbit": [ + "True", + "False", + "ANY" + ], + "enable_debug": [ + "True", + "False", + "ANY" + ], + "enable_log": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\brotl01cfbaf421d56\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "brotli/1.1.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "enable_debug": "False", + "enable_log": "False", + "enable_portable": "False", + "enable_rbit": "True", + "endianness": null, + "shared": "False", + "target_bits": null + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "25": { + "ref": "meson/1.3.2#26ce8a76a36cc275cdfee1d757bc6561", + "id": "25", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "3ba677cf44c95996f4f326c668f92f00", + "rrev": "26ce8a76a36cc275cdfee1d757bc6561", + "rrev_timestamp": 1726730118.251, + "prev_timestamp": 1726730535.071, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "meson", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "a project to create the best possible next-generation build system", + "homepage": "https://github.com/mesonbuild/meson", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.3.2", + "topics": [ + "mesonbuild", + "build-system" + ], + "package_type": "application", + "languages": [], + "settings": {}, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson441134a31840c\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "meson/1.3.2", + "info": {}, + "vendor": false, + "dependencies": { + "26": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + } + }, + "context": "build", + "test": false + }, + "26": { + "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", + "id": "26", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "360592e21b5a6812030b65cbdd1c4a8d", + "rrev": "fd583651bf0c6a901943495d49878803", + "rrev_timestamp": 1724079877.609, + "prev_timestamp": 1724080899.217, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "ninja", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Ninja is a small build system with a focus on speed", + "homepage": "https://github.com/ninja-build/ninja", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.12.1", + "topics": [ + "ninja", + "build" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ninja/1.12.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "27": { + "ref": "pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605", + "id": "27", + "recipe": "Downloaded", + "package_id": "43771b8671ac44479c188dd72670e2eb2d7918a6", + "prev": "302b4a47f55f982ddf140855abd5bf1f", + "rrev": "27f44583701117b571307cf5b5fe5605", + "rrev_timestamp": 1701537936.436, + "prev_timestamp": 1701539026.967, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "pkgconf", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "ISC", + "author": null, + "description": "package compiler and linker metadata toolkit", + "homepage": "https://git.sr.ht/~kaniini/pkgconf", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "enable_lib": false + }, + "options_description": null, + "version": "2.1.0", + "topics": [ + "build", + "configuration" + ], + "package_type": "unknown", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "enable_lib": "False" + }, + "options_definitions": { + "enable_lib": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\pkgco39164e4b4e12d\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "pkgconf/2.1.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + }, + "options": { + "enable_lib": "False" + } + }, + "vendor": false, + "dependencies": { + "28": { + "ref": "meson/1.2.2", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "29": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "build", + "test": false + }, + "28": { + "ref": "meson/1.2.2#21b73818ba96d9eea465b310b5bbc993", + "id": "28", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "97f4a23dd2d942f83e5344b1ca496ce7", + "rrev": "21b73818ba96d9eea465b310b5bbc993", + "rrev_timestamp": 1726730120.212, + "prev_timestamp": 1726730449.612, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "meson", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "a project to create the best possible next-generation build system", + "homepage": "https://github.com/mesonbuild/meson", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.2.2", + "topics": [ + "mesonbuild", + "build-system" + ], + "package_type": "application", + "languages": [], + "settings": {}, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson5558efeaf108c\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "meson/1.2.2", + "info": {}, + "vendor": false, + "dependencies": { + "29": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + } + }, + "context": "build", + "test": false + }, + "29": { + "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", + "id": "29", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "360592e21b5a6812030b65cbdd1c4a8d", + "rrev": "fd583651bf0c6a901943495d49878803", + "rrev_timestamp": 1724079877.609, + "prev_timestamp": 1724080899.217, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "ninja", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Ninja is a small build system with a focus on speed", + "homepage": "https://github.com/ninja-build/ninja", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.12.1", + "topics": [ + "ninja", + "build" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ninja/1.12.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "30": { + "ref": "openh264/2.4.1#e7b055ba4fc635a6a3e0dbec088e18ea", + "id": "30", + "recipe": "Downloaded", + "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", + "prev": "f8c0525811934c11c7d10be7452c74e8", + "rrev": "e7b055ba4fc635a6a3e0dbec088e18ea", + "rrev_timestamp": 1732788772.808, + "prev_timestamp": 1732789386.113, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "openh264", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "Open Source H.264 Codec", + "homepage": "http://www.openh264.org/", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "2.4.1", + "topics": [ + "h264", + "codec", + "video", + "compression" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\openhcc24af2c9216e\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "openh264/2.4.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "31": { + "ref": "meson/1.4.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "32": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "33": { + "ref": "pkgconf/2.2.0", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "36": { + "ref": "nasm/2.16.01", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "31": { + "ref": "meson/1.4.1#43b753adf9a089cadfa17c8034f5c897", + "id": "31", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "4a43a051838fc016591c956c0389e89e", + "rrev": "43b753adf9a089cadfa17c8034f5c897", + "rrev_timestamp": 1726730117.486, + "prev_timestamp": 1726730485.857, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "meson", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "a project to create the best possible next-generation build system", + "homepage": "https://github.com/mesonbuild/meson", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.4.1", + "topics": [ + "mesonbuild", + "build-system" + ], + "package_type": "application", + "languages": [], + "settings": {}, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson050f2398829b1\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "meson/1.4.1", + "info": {}, + "vendor": false, + "dependencies": { + "32": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + } + }, + "context": "build", + "test": false + }, + "32": { + "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", + "id": "32", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "360592e21b5a6812030b65cbdd1c4a8d", + "rrev": "fd583651bf0c6a901943495d49878803", + "rrev_timestamp": 1724079877.609, + "prev_timestamp": 1724080899.217, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "ninja", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Ninja is a small build system with a focus on speed", + "homepage": "https://github.com/ninja-build/ninja", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.12.1", + "topics": [ + "ninja", + "build" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ninja/1.12.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "33": { + "ref": "pkgconf/2.2.0#6462942a22803086372db44689ba825f", + "id": "33", + "recipe": "Downloaded", + "package_id": "43771b8671ac44479c188dd72670e2eb2d7918a6", + "prev": "7bf2c1dc194cbb493a2cce6721fb7c01", + "rrev": "6462942a22803086372db44689ba825f", + "rrev_timestamp": 1713364853.749, + "prev_timestamp": 1713802872.024, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "pkgconf", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "ISC", + "author": null, + "description": "package compiler and linker metadata toolkit", + "homepage": "https://git.sr.ht/~kaniini/pkgconf", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "enable_lib": false + }, + "options_description": null, + "version": "2.2.0", + "topics": [ + "build", + "configuration" + ], + "package_type": "unknown", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "enable_lib": "False" + }, + "options_definitions": { + "enable_lib": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\pkgcoff0cd8ef87b2e\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "pkgconf/2.2.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + }, + "options": { + "enable_lib": "False" + } + }, + "vendor": false, + "dependencies": { + "34": { + "ref": "meson/1.2.2", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "35": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "build", + "test": false + }, + "34": { + "ref": "meson/1.2.2#21b73818ba96d9eea465b310b5bbc993", + "id": "34", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "97f4a23dd2d942f83e5344b1ca496ce7", + "rrev": "21b73818ba96d9eea465b310b5bbc993", + "rrev_timestamp": 1726730120.212, + "prev_timestamp": 1726730449.612, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "meson", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "a project to create the best possible next-generation build system", + "homepage": "https://github.com/mesonbuild/meson", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.2.2", + "topics": [ + "mesonbuild", + "build-system" + ], + "package_type": "application", + "languages": [], + "settings": {}, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson5558efeaf108c\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "meson/1.2.2", + "info": {}, + "vendor": false, + "dependencies": { + "35": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + } + }, + "context": "build", + "test": false + }, + "35": { + "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", + "id": "35", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "360592e21b5a6812030b65cbdd1c4a8d", + "rrev": "fd583651bf0c6a901943495d49878803", + "rrev_timestamp": 1724079877.609, + "prev_timestamp": 1724080899.217, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "ninja", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Ninja is a small build system with a focus on speed", + "homepage": "https://github.com/ninja-build/ninja", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.12.1", + "topics": [ + "ninja", + "build" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ninja/1.12.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "36": { + "ref": "nasm/2.16.01#d0aebbd20ccbb6ad9c9c753ab708098c", + "id": "36", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "a32665446878fcea73ae881cc0cd7d41", + "rrev": "d0aebbd20ccbb6ad9c9c753ab708098c", + "rrev_timestamp": 1703986473.394, + "prev_timestamp": 1703989724.026, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "nasm", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", + "homepage": "http://www.nasm.us", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "2.16.01", + "topics": [ + "asm", + "installer", + "assembler" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmdd53aea891ec3\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "nasm/2.16.01", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": { + "37": { + "ref": "strawberryperl/5.32.1.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "build", + "test": false + }, + "37": { + "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", + "id": "37", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "a365b3810f698e2f0a00fbeece022903", + "rrev": "707032463aa0620fa17ec0d887f5fe41", + "rrev_timestamp": 1716912583.131, + "prev_timestamp": 1716913306.441, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "strawberryperl", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "Artistic-1.0", + "GPL-1.0" + ], + "author": null, + "description": "Strawberry Perl for Windows.", + "homepage": "http://strawberryperl.com", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "5.32.1.1", + "topics": [ + "perl", + "interpreter", + "windows" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "strawberryperl/5.32.1.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "38": { + "ref": "vorbis/1.3.7#37e58f52e59a6232199b34ef402714a6", + "id": "38", + "recipe": "Downloaded", + "package_id": "5716ed60be3e52a680aebcade966a2d4782db011", + "prev": "6bd7f8caee1c94c4eccf2f5b117619d1", + "rrev": "37e58f52e59a6232199b34ef402714a6", + "rrev_timestamp": 1699046045.52, + "prev_timestamp": 1699049257.661, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "vorbis", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "The VORBIS audio codec library", + "homepage": "https://xiph.org/vorbis/", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "1.3.7", + "topics": [ + "audio", + "codec" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\vorbi17ae576c72ece\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "vorbis/1.3.7", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "requires": [ + "ogg/1.3.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "39": { + "ref": "ogg/1.3.5", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": true, + "transitive_libs": true, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + } + }, + "context": "host", + "test": false + }, + "39": { + "ref": "ogg/1.3.5#062626875f5c8c59f069f76f148098ef", + "id": "39", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "e927a574838328774c00363480fd0711", + "rrev": "062626875f5c8c59f069f76f148098ef", + "rrev_timestamp": 1676030023.878, + "prev_timestamp": 1686986872.744, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "ogg", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "The OGG library", + "homepage": "https://github.com/xiph/ogg", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "1.3.5", + "topics": [ + "codec", + "audio", + "lossless" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ogg09f0a2947bfb4\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ogg/1.3.5", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "40": { + "ref": "opus/1.4#3c98a306d127dce1e74d58a0e2c850b5", + "id": "40", + "recipe": "Downloaded", + "package_id": "d1a5b9bcc299cdd33a65105d273acb7da6ab62cf", + "prev": "3f3d6291c3e8d5eb8353dadc8623c96a", + "rrev": "3c98a306d127dce1e74d58a0e2c850b5", + "rrev_timestamp": 1726141248.821, + "prev_timestamp": 1726142602.129, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "opus", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "Opus is a totally open, royalty-free, highly versatile audio codec.", + "homepage": "https://opus-codec.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "fixed_point": false, + "stack_protector": true + }, + "options_description": null, + "version": "1.4", + "topics": [ + "opus", + "audio", + "decoder", + "decoding", + "multimedia", + "sound" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "fixed_point": "False", + "shared": "False", + "stack_protector": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "fixed_point": [ + "True", + "False", + "ANY" + ], + "stack_protector": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\opus075424eea27be\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "opus/1.4", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "fixed_point": "False", + "shared": "False", + "stack_protector": "True" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "41": { + "ref": "libx264/cci.20240224#b59786f05910017eb25a661cc79d68a3", + "id": "41", + "recipe": "Downloaded", + "package_id": "16a6c7ac72b1099ac41fab8e283c4688d873d02c", + "prev": "25be6964c7b02480976174efd3ce0fd3", + "rrev": "b59786f05910017eb25a661cc79d68a3", + "rrev_timestamp": 1733303978.056, + "prev_timestamp": 1733304761.449, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libx264", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "GPL-2.0", + "author": null, + "description": "x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format", + "homepage": "https://www.videolan.org/developers/x264.html", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": true, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "bit_depth": "all", + "with_opencl": true, + "with_asm": true + }, + "options_description": null, + "version": "cci.20240224", + "topics": [ + "video", + "encoding" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "bit_depth": "all", + "shared": "False", + "with_asm": "True", + "with_opencl": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "bit_depth": [ + "8", + "10", + "all", + "ANY" + ], + "with_opencl": [ + "True", + "False", + "ANY" + ], + "with_asm": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libx2d4b12e0eb3288\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libx264/cci.20240224", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "bit_depth": "all", + "shared": "False", + "with_asm": "True", + "with_opencl": "True" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "42": { + "ref": "nasm/2.15.05", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "44": { + "ref": "msys2/cci.latest", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "42": { + "ref": "nasm/2.15.05#058c93b2214a49ca1cfe9f8f26205568", + "id": "42", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "d8ed631ad7024475859e1b94de1f123c", + "rrev": "058c93b2214a49ca1cfe9f8f26205568", + "rrev_timestamp": 1703550024.076, + "prev_timestamp": 1703550813.478, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "nasm", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", + "homepage": "http://www.nasm.us", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "2.15.05", + "topics": [ + "asm", + "installer", + "assembler" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmddc75946c8a7a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "nasm/2.15.05", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": { + "43": { + "ref": "strawberryperl/5.32.1.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "build", + "test": false + }, + "43": { + "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", + "id": "43", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "a365b3810f698e2f0a00fbeece022903", + "rrev": "707032463aa0620fa17ec0d887f5fe41", + "rrev_timestamp": 1716912583.131, + "prev_timestamp": 1716913306.441, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "strawberryperl", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "Artistic-1.0", + "GPL-1.0" + ], + "author": null, + "description": "Strawberry Perl for Windows.", + "homepage": "http://strawberryperl.com", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "5.32.1.1", + "topics": [ + "perl", + "interpreter", + "windows" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "strawberryperl/5.32.1.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "44": { + "ref": "msys2/cci.latest#4927aa5502eb174e95df524f2be2685e", + "id": "44", + "recipe": "Downloaded", + "package_id": "956a88975bda9dfcc485e2861d71e74bd7e2b9a5", + "prev": "06ca1e71ba3ed86c0b2e116f4a63da61", + "rrev": "4927aa5502eb174e95df524f2be2685e", + "rrev_timestamp": 1732034252.89, + "prev_timestamp": 1732034681.324, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "msys2", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MSYS license", + "author": null, + "description": "MSYS2 is a software distro and building platform for Windows", + "homepage": "http://www.msys2.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "exclude_files": "*/link.exe", + "packages": "base-devel,binutils,gcc", + "additional_packages": null, + "no_kill": false + }, + "options_description": null, + "version": "cci.latest", + "topics": [ + "msys", + "unix", + "subsystem" + ], + "package_type": "unknown", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": { + "additional_packages": null, + "exclude_files": "*/link.exe", + "no_kill": "False", + "packages": "base-devel,binutils,gcc" + }, + "options_definitions": { + "exclude_files": [ + "ANY" + ], + "packages": [ + "ANY" + ], + "additional_packages": [ + null, + "ANY" + ], + "no_kill": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\msys2058ac8d7e56ba\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "msys2/cci.latest", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": { + "additional_packages": null, + "exclude_files": "*/link.exe", + "packages": "base-devel,binutils,gcc" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "45": { + "ref": "libx265/3.4#719e50b2b2c3fd1b9133fea12da42c62", + "id": "45", + "recipe": "Downloaded", + "package_id": "51e0f530ce3b7ab1874d8a7d4d1db79c6980ad83", + "prev": "abe56a778a1f8cd63ed0b147ce906fdc", + "rrev": "719e50b2b2c3fd1b9133fea12da42c62", + "rrev_timestamp": 1721125806.318, + "prev_timestamp": 1721127954.05, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libx265", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "GPL-2.0-only", + "commercial" + ], + "author": null, + "description": "x265 is the leading H.265 / HEVC encoder software library", + "homepage": "https://www.videolan.org/developers/x265.html", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "assembly": true, + "bit_depth": 8, + "HDR10": false, + "SVG_HEVC_encoder": false, + "with_numa": false + }, + "options_description": null, + "version": "3.4", + "topics": [ + "x265", + "codec", + "video", + "H.265" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "HDR10": "False", + "SVG_HEVC_encoder": "False", + "assembly": "True", + "bit_depth": "8", + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "assembly": [ + "True", + "False", + "ANY" + ], + "bit_depth": [ + "8", + "10", + "12", + "ANY" + ], + "HDR10": [ + "True", + "False", + "ANY" + ], + "SVG_HEVC_encoder": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libx21c2521966d8c6\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libx265/3.4", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "HDR10": "False", + "SVG_HEVC_encoder": "False", + "assembly": "True", + "bit_depth": "8", + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "46": { + "ref": "nasm/2.15.05", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "46": { + "ref": "nasm/2.15.05#058c93b2214a49ca1cfe9f8f26205568", + "id": "46", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "d8ed631ad7024475859e1b94de1f123c", + "rrev": "058c93b2214a49ca1cfe9f8f26205568", + "rrev_timestamp": 1703550024.076, + "prev_timestamp": 1703550813.478, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "nasm", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", + "homepage": "http://www.nasm.us", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "2.15.05", + "topics": [ + "asm", + "installer", + "assembler" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmddc75946c8a7a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "nasm/2.15.05", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": { + "47": { + "ref": "strawberryperl/5.32.1.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "build", + "test": false + }, + "47": { + "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", + "id": "47", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "a365b3810f698e2f0a00fbeece022903", + "rrev": "707032463aa0620fa17ec0d887f5fe41", + "rrev_timestamp": 1716912583.131, + "prev_timestamp": 1716913306.441, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "strawberryperl", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "Artistic-1.0", + "GPL-1.0" + ], + "author": null, + "description": "Strawberry Perl for Windows.", + "homepage": "http://strawberryperl.com", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "5.32.1.1", + "topics": [ + "perl", + "interpreter", + "windows" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "strawberryperl/5.32.1.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "48": { + "ref": "libvpx/1.14.1#3b2a56aea1e29b9a8f7753030c620f38", + "id": "48", + "recipe": "Downloaded", + "package_id": "a41a3c9132f76c03420a0d58c94f179496b2c6c1", + "prev": "56d11bd1d6a77920094ff4777f9fff01", + "rrev": "3b2a56aea1e29b9a8f7753030c620f38", + "rrev_timestamp": 1723790838.997, + "prev_timestamp": 1723794775.836, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libvpx", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "WebM VP8/VP9 Codec SDK", + "homepage": "https://www.webmproject.org/code", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": true, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "mmx": true, + "sse": true, + "sse2": true, + "sse3": true, + "ssse3": true, + "sse4_1": true, + "avx": false, + "avx2": false, + "avx512": false + }, + "options_description": null, + "version": "1.14.1", + "topics": [ + "vpx", + "codec", + "web", + "VP8", + "VP9" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "avx": "False", + "avx2": "False", + "avx512": "False", + "mmx": "True", + "sse": "True", + "sse2": "True", + "sse3": "True", + "sse4_1": "True", + "ssse3": "True" + }, + "options_definitions": { + "mmx": [ + "True", + "False", + "ANY" + ], + "sse": [ + "True", + "False", + "ANY" + ], + "sse2": [ + "True", + "False", + "ANY" + ], + "sse3": [ + "True", + "False", + "ANY" + ], + "ssse3": [ + "True", + "False", + "ANY" + ], + "sse4_1": [ + "True", + "False", + "ANY" + ], + "avx": [ + "True", + "False", + "ANY" + ], + "avx2": [ + "True", + "False", + "ANY" + ], + "avx512": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libvp365896908f4e7\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libvpx/1.14.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "avx": "False", + "avx2": "False", + "avx512": "False", + "mmx": "True", + "sse": "True", + "sse2": "True", + "sse3": "True", + "sse4_1": "True", + "ssse3": "True" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "49": { + "ref": "yasm/1.3.0", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "50": { + "ref": "msys2/cci.latest", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "49": { + "ref": "yasm/1.3.0#fb800a15413dca19bfaef9e4b5d50694", + "id": "49", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "68bb37bc24509a0529e3363ecac8f9e3", + "rrev": "fb800a15413dca19bfaef9e4b5d50694", + "rrev_timestamp": 1676208399.011, + "prev_timestamp": 1677764295.993, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "yasm", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "Yasm is a complete rewrite of the NASM assembler under the 'new' BSD License", + "homepage": "https://github.com/yasm/yasm", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.3.0", + "topics": [ + "yasm", + "installer", + "assembler" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\yasmb78308884dd42\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "yasm/1.3.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "50": { + "ref": "msys2/cci.latest#4927aa5502eb174e95df524f2be2685e", + "id": "50", + "recipe": "Downloaded", + "package_id": "956a88975bda9dfcc485e2861d71e74bd7e2b9a5", + "prev": "06ca1e71ba3ed86c0b2e116f4a63da61", + "rrev": "4927aa5502eb174e95df524f2be2685e", + "rrev_timestamp": 1732034252.89, + "prev_timestamp": 1732034681.324, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "msys2", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MSYS license", + "author": null, + "description": "MSYS2 is a software distro and building platform for Windows", + "homepage": "http://www.msys2.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "exclude_files": "*/link.exe", + "packages": "base-devel,binutils,gcc", + "additional_packages": null, + "no_kill": false + }, + "options_description": null, + "version": "cci.latest", + "topics": [ + "msys", + "unix", + "subsystem" + ], + "package_type": "unknown", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": { + "additional_packages": null, + "exclude_files": "*/link.exe", + "no_kill": "False", + "packages": "base-devel,binutils,gcc" + }, + "options_definitions": { + "exclude_files": [ + "ANY" + ], + "packages": [ + "ANY" + ], + "additional_packages": [ + null, + "ANY" + ], + "no_kill": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\msys2058ac8d7e56ba\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "msys2/cci.latest", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": { + "additional_packages": null, + "exclude_files": "*/link.exe", + "packages": "base-devel,binutils,gcc" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "51": { + "ref": "libmp3lame/3.100#44b12d19316eb2b223d98d3e75dae438", + "id": "51", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "1f940ddf96019360898491726791f26a", + "rrev": "44b12d19316eb2b223d98d3e75dae438", + "rrev_timestamp": 1674992501.853, + "prev_timestamp": 1686986797.846, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libmp3lame", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "LGPL-2.0", + "author": null, + "description": "LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL.", + "homepage": "http://lame.sourceforge.net", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "3.100", + "topics": [ + "multimedia", + "audio", + "mp3", + "decoder", + "encoding", + "decoding" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libmpebf686a19587c\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libmp3lame/3.100", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "52": { + "ref": "libfdk_aac/2.0.3#0115f6598be7303e042684e3a846b12d", + "id": "52", + "recipe": "Downloaded", + "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", + "prev": "0ee032989f19d0f4ee55b994561e62df", + "rrev": "0115f6598be7303e042684e3a846b12d", + "rrev_timestamp": 1720774838.081, + "prev_timestamp": 1720777361.561, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libfdk_aac", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "https://github.com/mstorsjo/fdk-aac/blob/master/NOTICE", + "author": null, + "description": "A standalone library of the Fraunhofer FDK AAC code from Android", + "homepage": "https://sourceforge.net/projects/opencore-amr/", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "2.0.3", + "topics": [ + "multimedia", + "audio", + "fraunhofer", + "aac", + "decoder", + "encoding", + "decoding" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libfdf7a93698f6a52\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libfdk_aac/2.0.3", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "53": { + "ref": "openssl/3.3.2#9f9f130d58e7c13e76bb8a559f0a6a8b", + "id": "53", + "recipe": "Downloaded", + "package_id": "2bcf959ecd653496ee2aa793e11b67c013b3b876", + "prev": "10e0710d2ba88f9b075cf4a105e23cb5", + "rrev": "9f9f130d58e7c13e76bb8a559f0a6a8b", + "rrev_timestamp": 1726234629.657, + "prev_timestamp": 1726237838.06, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "openssl", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "A toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols", + "homepage": "https://github.com/openssl/openssl", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "enable_weak_ssl_ciphers": false, + "386": false, + "capieng_dialog": false, + "enable_capieng": false, + "enable_trace": false, + "no_aria": false, + "no_apps": false, + "no_autoload_config": false, + "no_asm": false, + "no_async": false, + "no_blake2": false, + "no_bf": false, + "no_camellia": false, + "no_chacha": false, + "no_cms": false, + "no_comp": false, + "no_ct": false, + "no_cast": false, + "no_deprecated": false, + "no_des": false, + "no_dgram": false, + "no_dh": false, + "no_dsa": false, + "no_dso": false, + "no_ec": false, + "no_ecdh": false, + "no_ecdsa": false, + "no_engine": false, + "no_filenames": false, + "no_fips": false, + "no_gost": false, + "no_idea": false, + "no_legacy": false, + "no_md2": true, + "no_md4": false, + "no_mdc2": false, + "no_module": false, + "no_ocsp": false, + "no_pinshared": false, + "no_rc2": false, + "no_rc4": false, + "no_rc5": false, + "no_rfc3779": false, + "no_rmd160": false, + "no_sm2": false, + "no_sm3": false, + "no_sm4": false, + "no_srp": false, + "no_srtp": false, + "no_sse2": false, + "no_ssl": false, + "no_stdio": false, + "no_seed": false, + "no_sock": false, + "no_ssl3": false, + "no_threads": false, + "no_tls1": false, + "no_ts": false, + "no_whirlpool": false, + "no_zlib": false, + "openssldir": null, + "tls_security_level": null + }, + "options_description": null, + "version": "3.3.2", + "topics": [ + "ssl", + "tls", + "encryption", + "security" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "386": "False", + "capieng_dialog": "False", + "enable_capieng": "False", + "enable_trace": "False", + "enable_weak_ssl_ciphers": "False", + "no_apps": "False", + "no_aria": "False", + "no_asm": "False", + "no_async": "False", + "no_autoload_config": "False", + "no_bf": "False", + "no_blake2": "False", + "no_camellia": "False", + "no_cast": "False", + "no_chacha": "False", + "no_cms": "False", + "no_comp": "False", + "no_ct": "False", + "no_deprecated": "False", + "no_des": "False", + "no_dgram": "False", + "no_dh": "False", + "no_dsa": "False", + "no_dso": "False", + "no_ec": "False", + "no_ecdh": "False", + "no_ecdsa": "False", + "no_engine": "False", + "no_filenames": "False", + "no_fips": "False", + "no_gost": "False", + "no_idea": "False", + "no_legacy": "False", + "no_md2": "True", + "no_md4": "False", + "no_mdc2": "False", + "no_module": "False", + "no_ocsp": "False", + "no_pinshared": "False", + "no_rc2": "False", + "no_rc4": "False", + "no_rc5": "False", + "no_rfc3779": "False", + "no_rmd160": "False", + "no_seed": "False", + "no_sm2": "False", + "no_sm3": "False", + "no_sm4": "False", + "no_sock": "False", + "no_srp": "False", + "no_srtp": "False", + "no_sse2": "False", + "no_ssl": "False", + "no_ssl3": "False", + "no_stdio": "False", + "no_threads": "False", + "no_tls1": "False", + "no_ts": "False", + "no_whirlpool": "False", + "no_zlib": "False", + "openssldir": "None", + "shared": "False", + "tls_security_level": "None" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "enable_weak_ssl_ciphers": [ + "True", + "False", + "ANY" + ], + "386": [ + "True", + "False", + "ANY" + ], + "capieng_dialog": [ + "True", + "False", + "ANY" + ], + "enable_capieng": [ + "True", + "False", + "ANY" + ], + "enable_trace": [ + "True", + "False", + "ANY" + ], + "no_aria": [ + "True", + "False", + "ANY" + ], + "no_apps": [ + "True", + "False", + "ANY" + ], + "no_autoload_config": [ + "True", + "False", + "ANY" + ], + "no_asm": [ + "True", + "False", + "ANY" + ], + "no_async": [ + "True", + "False", + "ANY" + ], + "no_blake2": [ + "True", + "False", + "ANY" + ], + "no_bf": [ + "True", + "False", + "ANY" + ], + "no_camellia": [ + "True", + "False", + "ANY" + ], + "no_chacha": [ + "True", + "False", + "ANY" + ], + "no_cms": [ + "True", + "False", + "ANY" + ], + "no_comp": [ + "True", + "False", + "ANY" + ], + "no_ct": [ + "True", + "False", + "ANY" + ], + "no_cast": [ + "True", + "False", + "ANY" + ], + "no_deprecated": [ + "True", + "False", + "ANY" + ], + "no_des": [ + "True", + "False", + "ANY" + ], + "no_dgram": [ + "True", + "False", + "ANY" + ], + "no_dh": [ + "True", + "False", + "ANY" + ], + "no_dsa": [ + "True", + "False", + "ANY" + ], + "no_dso": [ + "True", + "False", + "ANY" + ], + "no_ec": [ + "True", + "False", + "ANY" + ], + "no_ecdh": [ + "True", + "False", + "ANY" + ], + "no_ecdsa": [ + "True", + "False", + "ANY" + ], + "no_engine": [ + "True", + "False", + "ANY" + ], + "no_filenames": [ + "True", + "False", + "ANY" + ], + "no_fips": [ + "True", + "False", + "ANY" + ], + "no_gost": [ + "True", + "False", + "ANY" + ], + "no_idea": [ + "True", + "False", + "ANY" + ], + "no_legacy": [ + "True", + "False", + "ANY" + ], + "no_md2": [ + "True", + "False", + "ANY" + ], + "no_md4": [ + "True", + "False", + "ANY" + ], + "no_mdc2": [ + "True", + "False", + "ANY" + ], + "no_module": [ + "True", + "False", + "ANY" + ], + "no_ocsp": [ + "True", + "False", + "ANY" + ], + "no_pinshared": [ + "True", + "False", + "ANY" + ], + "no_rc2": [ + "True", + "False", + "ANY" + ], + "no_rc4": [ + "True", + "False", + "ANY" + ], + "no_rc5": [ + "True", + "False", + "ANY" + ], + "no_rfc3779": [ + "True", + "False", + "ANY" + ], + "no_rmd160": [ + "True", + "False", + "ANY" + ], + "no_sm2": [ + "True", + "False", + "ANY" + ], + "no_sm3": [ + "True", + "False", + "ANY" + ], + "no_sm4": [ + "True", + "False", + "ANY" + ], + "no_srp": [ + "True", + "False", + "ANY" + ], + "no_srtp": [ + "True", + "False", + "ANY" + ], + "no_sse2": [ + "True", + "False", + "ANY" + ], + "no_ssl": [ + "True", + "False", + "ANY" + ], + "no_stdio": [ + "True", + "False", + "ANY" + ], + "no_seed": [ + "True", + "False", + "ANY" + ], + "no_sock": [ + "True", + "False", + "ANY" + ], + "no_ssl3": [ + "True", + "False", + "ANY" + ], + "no_threads": [ + "True", + "False", + "ANY" + ], + "no_tls1": [ + "True", + "False", + "ANY" + ], + "no_ts": [ + "True", + "False", + "ANY" + ], + "no_whirlpool": [ + "True", + "False", + "ANY" + ], + "no_zlib": [ + "True", + "False", + "ANY" + ], + "openssldir": [ + null, + "ANY", + "ANY" + ], + "tls_security_level": [ + null, + "0", + "1", + "2", + "3", + "4", + "5", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\opens79b01551887bb\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "openssl/3.3.2", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "386": "False", + "capieng_dialog": "False", + "enable_capieng": "False", + "enable_trace": "False", + "enable_weak_ssl_ciphers": "False", + "no_apps": "False", + "no_aria": "False", + "no_asm": "False", + "no_async": "False", + "no_autoload_config": "False", + "no_bf": "False", + "no_blake2": "False", + "no_camellia": "False", + "no_cast": "False", + "no_chacha": "False", + "no_cms": "False", + "no_comp": "False", + "no_ct": "False", + "no_deprecated": "False", + "no_des": "False", + "no_dgram": "False", + "no_dh": "False", + "no_dsa": "False", + "no_dso": "False", + "no_ec": "False", + "no_ecdh": "False", + "no_ecdsa": "False", + "no_engine": "False", + "no_filenames": "False", + "no_fips": "False", + "no_gost": "False", + "no_idea": "False", + "no_legacy": "False", + "no_md2": "True", + "no_md4": "False", + "no_mdc2": "False", + "no_module": "False", + "no_ocsp": "False", + "no_pinshared": "False", + "no_rc2": "False", + "no_rc4": "False", + "no_rc5": "False", + "no_rfc3779": "False", + "no_rmd160": "False", + "no_seed": "False", + "no_sm2": "False", + "no_sm3": "False", + "no_sm4": "False", + "no_sock": "False", + "no_srp": "False", + "no_srtp": "False", + "no_sse2": "False", + "no_ssl": "False", + "no_ssl3": "False", + "no_stdio": "False", + "no_threads": "False", + "no_tls1": "False", + "no_ts": "False", + "no_whirlpool": "False", + "no_zlib": "False", + "openssldir": null, + "shared": "False", + "tls_security_level": null + }, + "requires": [ + "zlib/1.3.Z" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "2": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "54": { + "ref": "nasm/2.16.01", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "56": { + "ref": "strawberryperl/5.32.1.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "54": { + "ref": "nasm/2.16.01#d0aebbd20ccbb6ad9c9c753ab708098c", + "id": "54", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "a32665446878fcea73ae881cc0cd7d41", + "rrev": "d0aebbd20ccbb6ad9c9c753ab708098c", + "rrev_timestamp": 1703986473.394, + "prev_timestamp": 1703989724.026, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "nasm", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", + "homepage": "http://www.nasm.us", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "2.16.01", + "topics": [ + "asm", + "installer", + "assembler" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmdd53aea891ec3\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "nasm/2.16.01", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": { + "55": { + "ref": "strawberryperl/5.32.1.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "build", + "test": false + }, + "55": { + "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", + "id": "55", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "a365b3810f698e2f0a00fbeece022903", + "rrev": "707032463aa0620fa17ec0d887f5fe41", + "rrev_timestamp": 1716912583.131, + "prev_timestamp": 1716913306.441, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "strawberryperl", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "Artistic-1.0", + "GPL-1.0" + ], + "author": null, + "description": "Strawberry Perl for Windows.", + "homepage": "http://strawberryperl.com", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "5.32.1.1", + "topics": [ + "perl", + "interpreter", + "windows" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "strawberryperl/5.32.1.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "56": { + "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", + "id": "56", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "a365b3810f698e2f0a00fbeece022903", + "rrev": "707032463aa0620fa17ec0d887f5fe41", + "rrev_timestamp": 1716912583.131, + "prev_timestamp": 1716913306.441, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "strawberryperl", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "Artistic-1.0", + "GPL-1.0" + ], + "author": null, + "description": "Strawberry Perl for Windows.", + "homepage": "http://strawberryperl.com", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "5.32.1.1", + "topics": [ + "perl", + "interpreter", + "windows" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "strawberryperl/5.32.1.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "57": { + "ref": "libaom-av1/3.6.1#a2b22c70d6fce43887881431808ab8a6", + "id": "57", + "recipe": "Downloaded", + "package_id": "c2103b16a3c2427d7d8b2881830304dcd9a9594c", + "prev": "6899905bc3bbae2d12130390ecabda76", + "rrev": "a2b22c70d6fce43887881431808ab8a6", + "rrev_timestamp": 1722584909.89, + "prev_timestamp": 1722586196.869, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "libaom-av1", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "AV1 Codec Library", + "homepage": "https://aomedia.googlesource.com/aom", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "assembly": false + }, + "options_description": null, + "version": "3.6.1", + "topics": [ + "av1", + "codec", + "video", + "encoding", + "decoding" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "assembly": "False", + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "assembly": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libaofd2a5e0327349\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "libaom-av1/3.6.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "assembly": "False", + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "58": { + "ref": "strawberryperl/5.32.1.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "58": { + "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", + "id": "58", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "a365b3810f698e2f0a00fbeece022903", + "rrev": "707032463aa0620fa17ec0d887f5fe41", + "rrev_timestamp": 1716912583.131, + "prev_timestamp": 1716913306.441, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "strawberryperl", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "Artistic-1.0", + "GPL-1.0" + ], + "author": null, + "description": "Strawberry Perl for Windows.", + "homepage": "http://strawberryperl.com", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "5.32.1.1", + "topics": [ + "perl", + "interpreter", + "windows" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "strawberryperl/5.32.1.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "59": { + "ref": "dav1d/1.4.3#5e2459e132c77183bd16d23d12fd8f4a", + "id": "59", + "recipe": "Downloaded", + "package_id": "678edc96b7a34895ba8e92b74ae489b339660c1c", + "prev": "7946cfb3637aebc8117472a570668b34", + "rrev": "5e2459e132c77183bd16d23d12fd8f4a", + "rrev_timestamp": 1720718852.932, + "prev_timestamp": 1720720255.436, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "dav1d", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "dav1d is a new AV1 cross-platform decoder, open-source, and focused on speed, size and correctness.", + "homepage": "https://www.videolan.org/projects/dav1d.html", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "bit_depth": "all", + "with_tools": true, + "assembly": true, + "with_avx512": "deprecated" + }, + "options_description": null, + "version": "1.4.3", + "topics": [ + "av1", + "codec", + "video", + "decoding" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "assembly": "True", + "bit_depth": "all", + "shared": "False", + "with_avx512": "deprecated", + "with_tools": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "bit_depth": [ + "all", + "8", + "16", + "ANY" + ], + "with_tools": [ + "True", + "False", + "ANY" + ], + "assembly": [ + "True", + "False", + "ANY" + ], + "with_avx512": [ + "deprecated", + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\dav1ded743e3fca1c6\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "dav1d/1.4.3", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "assembly": "True", + "bit_depth": "all", + "shared": "False", + "with_tools": "True" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "60": { + "ref": "meson/1.4.0", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "61": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "62": { + "ref": "nasm/2.16.01", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "60": { + "ref": "meson/1.4.0#2262941cc8fbb0099dd0c196ca2a6c01", + "id": "60", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "91b870cdcf4edb1a302a2ef7a0514791", + "rrev": "2262941cc8fbb0099dd0c196ca2a6c01", + "rrev_timestamp": 1726730116.631, + "prev_timestamp": 1726730448.155, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "meson", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "a project to create the best possible next-generation build system", + "homepage": "https://github.com/mesonbuild/meson", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.4.0", + "topics": [ + "mesonbuild", + "build-system" + ], + "package_type": "application", + "languages": [], + "settings": {}, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\mesonf6849a6fe4ba4\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "meson/1.4.0", + "info": {}, + "vendor": false, + "dependencies": { + "61": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + } + }, + "context": "build", + "test": false + }, + "61": { + "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", + "id": "61", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "360592e21b5a6812030b65cbdd1c4a8d", + "rrev": "fd583651bf0c6a901943495d49878803", + "rrev_timestamp": 1724079877.609, + "prev_timestamp": 1724080899.217, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "ninja", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Ninja is a small build system with a focus on speed", + "homepage": "https://github.com/ninja-build/ninja", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.12.1", + "topics": [ + "ninja", + "build" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ninja/1.12.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "62": { + "ref": "nasm/2.16.01#d0aebbd20ccbb6ad9c9c753ab708098c", + "id": "62", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "a32665446878fcea73ae881cc0cd7d41", + "rrev": "d0aebbd20ccbb6ad9c9c753ab708098c", + "rrev_timestamp": 1703986473.394, + "prev_timestamp": 1703989724.026, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "nasm", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", + "homepage": "http://www.nasm.us", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "2.16.01", + "topics": [ + "asm", + "installer", + "assembler" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmdd53aea891ec3\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "nasm/2.16.01", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": { + "63": { + "ref": "strawberryperl/5.32.1.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "build", + "test": false + }, + "63": { + "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", + "id": "63", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "a365b3810f698e2f0a00fbeece022903", + "rrev": "707032463aa0620fa17ec0d887f5fe41", + "rrev_timestamp": 1716912583.131, + "prev_timestamp": 1716913306.441, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "strawberryperl", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": [ + "Artistic-1.0", + "GPL-1.0" + ], + "author": null, + "description": "Strawberry Perl for Windows.", + "homepage": "http://strawberryperl.com", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "5.32.1.1", + "topics": [ + "perl", + "interpreter", + "windows" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "strawberryperl/5.32.1.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "64": { + "ref": "yasm/1.3.0#fb800a15413dca19bfaef9e4b5d50694", + "id": "64", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "68bb37bc24509a0529e3363ecac8f9e3", + "rrev": "fb800a15413dca19bfaef9e4b5d50694", + "rrev_timestamp": 1676208399.011, + "prev_timestamp": 1677764295.993, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "yasm", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "Yasm is a complete rewrite of the NASM assembler under the 'new' BSD License", + "homepage": "https://github.com/yasm/yasm", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.3.0", + "topics": [ + "yasm", + "installer", + "assembler" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\yasmb78308884dd42\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "yasm/1.3.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "65": { + "ref": "pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605", + "id": "65", + "recipe": "Downloaded", + "package_id": "43771b8671ac44479c188dd72670e2eb2d7918a6", + "prev": "302b4a47f55f982ddf140855abd5bf1f", + "rrev": "27f44583701117b571307cf5b5fe5605", + "rrev_timestamp": 1701537936.436, + "prev_timestamp": 1701539026.967, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "pkgconf", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "ISC", + "author": null, + "description": "package compiler and linker metadata toolkit", + "homepage": "https://git.sr.ht/~kaniini/pkgconf", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "enable_lib": false + }, + "options_description": null, + "version": "2.1.0", + "topics": [ + "build", + "configuration" + ], + "package_type": "unknown", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "enable_lib": "False" + }, + "options_definitions": { + "enable_lib": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\pkgco39164e4b4e12d\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "pkgconf/2.1.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + }, + "options": { + "enable_lib": "False" + } + }, + "vendor": false, + "dependencies": { + "66": { + "ref": "meson/1.2.2", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + }, + "67": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "build", + "test": false + }, + "66": { + "ref": "meson/1.2.2#21b73818ba96d9eea465b310b5bbc993", + "id": "66", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "97f4a23dd2d942f83e5344b1ca496ce7", + "rrev": "21b73818ba96d9eea465b310b5bbc993", + "rrev_timestamp": 1726730120.212, + "prev_timestamp": 1726730449.612, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "meson", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "a project to create the best possible next-generation build system", + "homepage": "https://github.com/mesonbuild/meson", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.2.2", + "topics": [ + "mesonbuild", + "build-system" + ], + "package_type": "application", + "languages": [], + "settings": {}, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson5558efeaf108c\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "meson/1.2.2", + "info": {}, + "vendor": false, + "dependencies": { + "67": { + "ref": "ninja/1.12.1", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": true + } + }, + "context": "build", + "test": false + }, + "67": { + "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", + "id": "67", + "recipe": "Downloaded", + "package_id": "723257509aee8a72faf021920c2874abc738e029", + "prev": "360592e21b5a6812030b65cbdd1c4a8d", + "rrev": "fd583651bf0c6a901943495d49878803", + "rrev_timestamp": 1724079877.609, + "prev_timestamp": 1724080899.217, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "ninja", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Ninja is a small build system with a focus on speed", + "homepage": "https://github.com/ninja-build/ninja", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "1.12.1", + "topics": [ + "ninja", + "build" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ninja/1.12.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "build_type": "Release" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "68": { + "ref": "msys2/cci.latest#4927aa5502eb174e95df524f2be2685e", + "id": "68", + "recipe": "Downloaded", + "package_id": "956a88975bda9dfcc485e2861d71e74bd7e2b9a5", + "prev": "06ca1e71ba3ed86c0b2e116f4a63da61", + "rrev": "4927aa5502eb174e95df524f2be2685e", + "rrev_timestamp": 1732034252.89, + "prev_timestamp": 1732034681.324, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "msys2", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MSYS license", + "author": null, + "description": "MSYS2 is a software distro and building platform for Windows", + "homepage": "http://www.msys2.org", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "exclude_files": "*/link.exe", + "packages": "base-devel,binutils,gcc", + "additional_packages": null, + "no_kill": false + }, + "options_description": null, + "version": "cci.latest", + "topics": [ + "msys", + "unix", + "subsystem" + ], + "package_type": "unknown", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": { + "additional_packages": null, + "exclude_files": "*/link.exe", + "no_kill": "False", + "packages": "base-devel,binutils,gcc" + }, + "options_definitions": { + "exclude_files": [ + "ANY" + ], + "packages": [ + "ANY" + ], + "additional_packages": [ + null, + "ANY" + ], + "no_kill": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\msys2058ac8d7e56ba\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "msys2/cci.latest", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": { + "additional_packages": null, + "exclude_files": "*/link.exe", + "packages": "base-devel,binutils,gcc" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "69": { + "ref": "protobuf/3.21.12#d1ddaac72b361494fe277377dbfe94c7", + "id": "69", + "recipe": "Downloaded", + "package_id": "9a546d3c2c7b2b02ebec30698e8536173849d86f", + "prev": "8ff84e2093c206244b0b01fab5b9d4db", + "rrev": "d1ddaac72b361494fe277377dbfe94c7", + "rrev_timestamp": 1732221817.822, + "prev_timestamp": 1732281685.725, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "protobuf", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "Protocol Buffers - Google's data interchange format", + "homepage": "https://github.com/protocolbuffers/protobuf", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "with_zlib": true, + "with_rtti": true, + "lite": false, + "upb": false, + "debug_suffix": true + }, + "options_description": null, + "version": "3.21.12", + "topics": [ + "protocol-buffers", + "protocol-compiler", + "serialization", + "rpc", + "protocol-compiler" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "debug_suffix": "True", + "lite": "False", + "shared": "False", + "with_rtti": "True", + "with_zlib": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False" + ], + "with_zlib": [ + "True", + "False" + ], + "with_rtti": [ + "True", + "False" + ], + "lite": [ + "True", + "False" + ], + "debug_suffix": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\protoe97b0f2d4b3d3\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "protobuf/3.21.12", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "debug_suffix": "True", + "lite": "False", + "shared": "False", + "with_rtti": "True", + "with_zlib": "True" + }, + "requires": [ + "zlib/1.3.Z" + ] + }, + "vendor": false, + "dependencies": { + "70": { + "ref": "zlib/1.3.1", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + } + }, + "context": "build", + "test": false + }, + "70": { + "ref": "zlib/1.3.1#b8bc2603263cf7eccbd6e17e66b0ed76", + "id": "70", + "recipe": "Downloaded", + "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", + "prev": "79ec8125ebd42591897da4cf270e6146", + "rrev": "b8bc2603263cf7eccbd6e17e66b0ed76", + "rrev_timestamp": 1733936244.862, + "prev_timestamp": 1733936492.457, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "zlib", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Zlib", + "author": null, + "description": "A Massively Spiffy Yet Delicately Unobtrusive Compression Library (Also Free, Not to Mention Unencumbered by Patents)", + "homepage": "https://zlib.net", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "1.3.1", + "topics": [ + "zlib", + "compression" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\zlib204752602052d\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "zlib/1.3.1", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "shared": "False" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + }, + "71": { + "ref": "tensorflow-lite/2.15.0#d1d39a062bf00a61166d46a4537527fb", + "id": "71", + "recipe": "Downloaded", + "package_id": "b524818cabf76a11fd1fd66a1e3377004a83aea4", + "prev": null, + "rrev": "d1d39a062bf00a61166d46a4537527fb", + "rrev_timestamp": 1724228962.993, + "prev_timestamp": null, + "remote": "conancenter", + "binary_remote": null, + "build_id": null, + "binary": "Invalid", + "invalid_build": false, + "info_invalid": "Current cppstd (14) is lower than the required C++ standard (17).", + "name": "tensorflow-lite", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "TensorFlow Lite is a set of tools that enables on-device machine learning by helping developers run their models on mobile, embedded, and IoT devices.", + "homepage": "https://www.tensorflow.org/lite/guide", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "with_ruy": false, + "with_nnapi": false, + "with_mmap": true, + "with_xnnpack": true + }, + "options_description": null, + "version": "2.15.0", + "topics": [ + "machine-learning", + "neural-networks", + "deep-learning" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "shared": "False", + "with_ruy": "False", + "with_xnnpack": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False" + ], + "with_ruy": [ + "True", + "False" + ], + "with_xnnpack": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\tenso25f02224b3fbc\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "tensorflow-lite/2.15.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "shared": "False", + "with_ruy": "False", + "with_xnnpack": "True" + }, + "requires": [ + "abseil/20230125.3.Z", + "eigen/3.4.0#2e192482a8acff96fe34766adca2b24c:da39a3ee5e6b4b0d3255bfef95601890afd80709", + "farmhash/cci", + "fft/cci", + "flatbuffers/23.5.Z", + "gemmlowp/cci", + "ruy/cci", + "intel-neon2sse/cci.20210225#56e8b51d756e9ae2a612e3489039e07b:da39a3ee5e6b4b0d3255bfef95601890afd80709", + "xnnpack/cci", + "cpuinfo/cci", + "pthreadpool/cci", + "fp16/cci.20210320#34dbac7f6fa3dee68830028b53de6c84:da39a3ee5e6b4b0d3255bfef95601890afd80709", + "psimd/cci.20200517#83200a06ebb1ff39c5adff0d712c05fa:da39a3ee5e6b4b0d3255bfef95601890afd80709", + "fxdiv/cci.20200417#0b3afe4c9d1b8d05f5f017984c8cb15a:da39a3ee5e6b4b0d3255bfef95601890afd80709" + ] + }, + "vendor": false, + "dependencies": { + "72": { + "ref": "abseil/20230125.3", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "3": { + "ref": "eigen/3.4.0", + "run": false, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + }, + "73": { + "ref": "farmhash/cci.20190513", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "74": { + "ref": "fft/cci.20061228", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "75": { + "ref": "flatbuffers/23.5.26", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": true, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "76": { + "ref": "gemmlowp/cci.20210928", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "77": { + "ref": "ruy/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "79": { + "ref": "intel-neon2sse/cci.20210225", + "run": false, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + }, + "80": { + "ref": "xnnpack/cci.20231026", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "78": { + "ref": "cpuinfo/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": "minor_mode", + "visible": true + }, + "83": { + "ref": "pthreadpool/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "81": { + "ref": "fp16/cci.20210320", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + }, + "82": { + "ref": "psimd/cci.20200517", + "run": false, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + }, + "84": { + "ref": "fxdiv/cci.20200417", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + }, + "85": { + "ref": "cmake/3.31.0", + "run": true, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": true, + "transitive_headers": null, + "transitive_libs": null, + "headers": false, + "package_id_mode": null, + "visible": false + } + }, + "context": "host", + "test": false + }, + "72": { + "ref": "abseil/20230125.3#1ba26940c6122d297346a01e0028d32d", + "id": "72", + "recipe": "Downloaded", + "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", + "prev": "88b1a34016147974731360589ba3f204", + "rrev": "1ba26940c6122d297346a01e0028d32d", + "rrev_timestamp": 1733486509.985, + "prev_timestamp": 1733487365.53, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "abseil", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Abseil Common Libraries (C++) from Google", + "homepage": "https://github.com/abseil/abseil-cpp", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "20230125.3", + "topics": [ + "algorithm", + "container", + "google", + "common", + "utility" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\abseif3110286ac75a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "abseil/20230125.3", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "73": { + "ref": "farmhash/cci.20190513#af6593f545dd2b496e6bd019f1deb66f", + "id": "73", + "recipe": "Downloaded", + "package_id": "9ce1eea680350959f3943df5f4b0ad6aa2bf9c94", + "prev": "f5a602937535bf1b46d9dfd3a266abba", + "rrev": "af6593f545dd2b496e6bd019f1deb66f", + "rrev_timestamp": 1676156947.749, + "prev_timestamp": 1727617305.281, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "farmhash", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MIT", + "author": null, + "description": "A family of hash functions", + "homepage": "https://github.com/google/farmhash", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "no_builtin_expect": false + }, + "options_description": null, + "version": "cci.20190513", + "topics": [ + "hash", + "google", + "family" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "no_builtin_expect": "False", + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "no_builtin_expect": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\farmh17b7ad0e9ec70\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "farmhash/cci.20190513", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "no_builtin_expect": "False", + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "74": { + "ref": "fft/cci.20061228#76a056c8ad3656ad557071c230f0f50c", + "id": "74", + "recipe": "Downloaded", + "package_id": "cba07622b406f0e7dcc49eee4d3efb9623d2391c", + "prev": "cce0e24a7893abb7923ec7eb343d8e78", + "rrev": "76a056c8ad3656ad557071c230f0f50c", + "rrev_timestamp": 1676213461.547, + "prev_timestamp": 1686990183.511, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "fft", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "LicenseRef-LICENSE", + "author": null, + "description": "This is a package to calculate Discrete Fourier/Cosine/Sine Transforms of 2,3-dimensional sequences of length 2^N.", + "homepage": "http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "threads": false, + "max_threads": 4, + "threads_begin_n": 65536 + }, + "options_description": null, + "version": "cci.20061228", + "topics": [ + "fft2d", + "fft3d", + "dct", + "dst", + "dft" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False", + "threads": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "threads": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\fft699acb0b4437a\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "fft/cci.20061228", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False", + "threads": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "75": { + "ref": "flatbuffers/23.5.26#606a38635994b68e946db3207b0159d7", + "id": "75", + "recipe": "Downloaded", + "package_id": "3868ecb287285bab8d1e934b9cc00fe8474404d4", + "prev": "085b99e3eae96a76fed876124cd6496d", + "rrev": "606a38635994b68e946db3207b0159d7", + "rrev_timestamp": 1731000287.235, + "prev_timestamp": 1731002505.564, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "flatbuffers", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Memory Efficient Serialization Library", + "homepage": "http://google.github.io/flatbuffers", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "header_only": false + }, + "options_description": null, + "version": "23.5.26", + "topics": [ + "serialization", + "rpc", + "json-parser" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "header_only": "False", + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "header_only": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\flatb3f38473b01a92\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "flatbuffers/23.5.26", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "header_only": "False", + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "76": { + "ref": "gemmlowp/cci.20210928#28483fa833aa47549961bb9c5ab84bfa", + "id": "76", + "recipe": "Downloaded", + "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", + "prev": "a0862c33ddc1d7a849fdb803f03336cb", + "rrev": "28483fa833aa47549961bb9c5ab84bfa", + "rrev_timestamp": 1676224257.989, + "prev_timestamp": 1727617647.021, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "gemmlowp", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "Low-precision matrix multiplication", + "homepage": "https://github.com/google/gemmlowp", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "cci.20210928", + "topics": [ + "gemm", + "matrix" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\gemml5e3f959eac300\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "gemmlowp/cci.20210928", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "77": { + "ref": "ruy/cci.20231129#f23bfbab527048bfffba001f7a81236d", + "id": "77", + "recipe": "Downloaded", + "package_id": "2e4c696053d4ca1cfc8f2fd51f9448865b3de5b2", + "prev": "b04af49d8ad1af034d276fb26d8a16f3", + "rrev": "f23bfbab527048bfffba001f7a81236d", + "rrev_timestamp": 1702571818.886, + "prev_timestamp": 1727617731.614, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "ruy", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "Apache-2.0", + "author": null, + "description": "ruy is a matrix multiplication library.\nIts focus is to cover the matrix multiplication needs of neural network inference engines\n", + "homepage": "https://github.com/google/ruy", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true + }, + "options_description": null, + "version": "cci.20231129", + "topics": [ + "matrix", + "multiplication", + "neural", + "network", + "AI", + "tensorflow" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ruycf35cae579f80\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "ruy/cci.20231129", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False" + }, + "requires": [ + "cpuinfo/cci" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.cppstd", + "14" + ], + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "78": { + "ref": "cpuinfo/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + } + }, + "context": "host", + "test": false + }, + "78": { + "ref": "cpuinfo/cci.20231129#15e94782b128bee8bfd047f6102a4d21", + "id": "78", + "recipe": "Downloaded", + "package_id": "55aeaf508eba1e9553e073e30c7d81e0b42040a4", + "prev": "9ebda280b5777286dcc43ed3a2ff86fa", + "rrev": "15e94782b128bee8bfd047f6102a4d21", + "rrev_timestamp": 1716817358.974, + "prev_timestamp": 1716818328.825, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "cpuinfo", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "cpuinfo is a library to detect essential for performance optimization information about host CPU.", + "homepage": "https://github.com/pytorch/cpuinfo", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "log_level": "default" + }, + "options_description": null, + "version": "cci.20231129", + "topics": [ + "cpu", + "cpuid", + "cpu-cache", + "cpu-model", + "instruction-set", + "cpu-topology" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "log_level": "default" + }, + "options_definitions": { + "log_level": [ + "default", + "debug", + "info", + "warning", + "error", + "fatal", + "none", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\cpuin3f959f8542df3\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "cpuinfo/cci.20231129", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "log_level": "default" + }, + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "79": { + "ref": "intel-neon2sse/cci.20210225#56e8b51d756e9ae2a612e3489039e07b", + "id": "79", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "e86e987114e7f78601bcb5230eec9ca7", + "rrev": "56e8b51d756e9ae2a612e3489039e07b", + "rrev_timestamp": 1701333748.561, + "prev_timestamp": 1701335166.702, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "intel-neon2sse", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "Header only library intended to simplify ARM->IA32 porting", + "homepage": "https://github.com/intel/ARM_NEON_2_x86_SSE", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "SSE4": false, + "disable_performance_warnings": false + }, + "options_description": null, + "version": "cci.20210225", + "topics": [ + "neon", + "sse", + "port", + "translation", + "intrinsics" + ], + "package_type": "header-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": { + "SSE4": "False", + "disable_performance_warnings": "False" + }, + "options_definitions": { + "SSE4": [ + "True", + "False" + ], + "disable_performance_warnings": [ + "True", + "False" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\intel2f85873cf029e\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "intel-neon2sse/cci.20210225", + "info": {}, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "80": { + "ref": "xnnpack/cci.20231026#7485b0bd0fddb0c09ed1658846c84797", + "id": "80", + "recipe": "Downloaded", + "package_id": "5b9e1b332e1031652e37fe80978962335351834d", + "prev": "bec1f8320108e9000e0b894b471b4348", + "rrev": "7485b0bd0fddb0c09ed1658846c84797", + "rrev_timestamp": 1709310561.618, + "prev_timestamp": 1727618477.668, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "xnnpack", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "XNNPACK is a highly optimized library of floating-point neural network inference operators for ARM, WebAssembly, and x86 platforms.", + "homepage": "https://github.com/google/XNNPACK", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "assembly": true, + "memopt": true, + "sparse": true + }, + "options_description": null, + "version": "cci.20231026", + "topics": [ + "neural-network", + "inference", + "multithreading", + "inference-optimization", + "matrix-multiplication", + "simd" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "assembly": "True", + "memopt": "True", + "shared": "False", + "sparse": "True" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "assembly": [ + "True", + "False", + "ANY" + ], + "memopt": [ + "True", + "False", + "ANY" + ], + "sparse": [ + "True", + "False", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\xnnpa77e05ecaeffe0\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "xnnpack/cci.20231026", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "assembly": "True", + "memopt": "True", + "shared": "False", + "sparse": "True" + }, + "requires": [ + "cpuinfo/cci", + "fp16/cci.20210320#34dbac7f6fa3dee68830028b53de6c84:da39a3ee5e6b4b0d3255bfef95601890afd80709", + "psimd/cci.20200517#83200a06ebb1ff39c5adff0d712c05fa:da39a3ee5e6b4b0d3255bfef95601890afd80709", + "pthreadpool/cci", + "fxdiv/cci.20200417#0b3afe4c9d1b8d05f5f017984c8cb15a:da39a3ee5e6b4b0d3255bfef95601890afd80709" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "78": { + "ref": "cpuinfo/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "81": { + "ref": "fp16/cci.20210320", + "run": false, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + }, + "82": { + "ref": "psimd/cci.20200517", + "run": false, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": false, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + }, + "83": { + "ref": "pthreadpool/cci.20231129", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": true, + "transitive_libs": null, + "headers": true, + "package_id_mode": "minor_mode", + "visible": true + }, + "84": { + "ref": "fxdiv/cci.20200417", + "run": false, + "libs": true, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": true, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + } + }, + "context": "host", + "test": false + }, + "81": { + "ref": "fp16/cci.20210320#34dbac7f6fa3dee68830028b53de6c84", + "id": "81", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "b7ab18bd2ee17d82530f93d190f36156", + "rrev": "34dbac7f6fa3dee68830028b53de6c84", + "rrev_timestamp": 1700638970.182, + "prev_timestamp": 1700639178.776, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "fp16", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MIT", + "author": null, + "description": "Conversion to/from half-precision floating point formats.", + "homepage": "https://github.com/Maratyszcza/FP16", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "cci.20210320", + "topics": [ + "half-precision-floating-point" + ], + "package_type": "header-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\fp166310248a73f77\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "fp16/cci.20210320", + "info": {}, + "vendor": false, + "dependencies": { + "82": { + "ref": "psimd/cci.20200517", + "run": false, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": true, + "transitive_libs": true, + "headers": true, + "package_id_mode": "unrelated_mode", + "visible": true + } + }, + "context": "host", + "test": false + }, + "82": { + "ref": "psimd/cci.20200517#83200a06ebb1ff39c5adff0d712c05fa", + "id": "82", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "d8c3d8d76275b4c8abf8ee833e49cae5", + "rrev": "83200a06ebb1ff39c5adff0d712c05fa", + "rrev_timestamp": 1700638971.11, + "prev_timestamp": 1700639159.34, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "psimd", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MIT", + "author": null, + "description": "Portable 128-bit SIMD intrinsics.", + "homepage": "https://github.com/Maratyszcza/psimd", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "cci.20200517", + "topics": [ + "psimd", + "simd" + ], + "package_type": "header-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\psimd203083dab5b97\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "psimd/cci.20200517", + "info": {}, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "83": { + "ref": "pthreadpool/cci.20231129#c721f98463f06cc5bf835df5d6fd9843", + "id": "83", + "recipe": "Downloaded", + "package_id": "5dffbda7dde87bf0cbe360aaf0bad20021309f73", + "prev": "8292cf64b3e37d67264a9ca0f7414301", + "rrev": "c721f98463f06cc5bf835df5d6fd9843", + "rrev_timestamp": 1702580771.579, + "prev_timestamp": 1702668579.731, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Download", + "invalid_build": false, + "info_invalid": null, + "name": "pthreadpool", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-2-Clause", + "author": null, + "description": "pthreadpool is a portable and efficient thread pool implementation. It provides similar functionality to #pragma omp parallel for, but with additional features.", + "homepage": "https://github.com/Maratyszcza/pthreadpool", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": { + "shared": false, + "fPIC": true, + "sync_primitive": "default" + }, + "options_description": null, + "version": "cci.20231129", + "topics": [ + "multi-threading", + "pthreads", + "multi-core", + "threadpool" + ], + "package_type": "static-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False", + "sync_primitive": "default" + }, + "options_definitions": { + "shared": [ + "True", + "False", + "ANY" + ], + "sync_primitive": [ + "default", + "condvar", + "futex", + "gcd", + "event", + "ANY" + ] + }, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\pthre138c0e967a5df\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "pthreadpool/cci.20231129", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "193", + "build_type": "Release" + }, + "options": { + "shared": "False", + "sync_primitive": "default" + }, + "requires": [ + "fxdiv/cci.20200417#0b3afe4c9d1b8d05f5f017984c8cb15a:da39a3ee5e6b4b0d3255bfef95601890afd80709" + ], + "compatibility_delta": { + "settings": [ + [ + "compiler.version", + "193" + ] + ] + } + }, + "vendor": false, + "dependencies": { + "84": { + "ref": "fxdiv/cci.20200417", + "run": false, + "libs": false, + "skip": false, + "test": false, + "force": false, + "direct": true, + "build": false, + "transitive_headers": null, + "transitive_libs": null, + "headers": true, + "package_id_mode": "full_mode", + "visible": true + } + }, + "context": "host", + "test": false + }, + "84": { + "ref": "fxdiv/cci.20200417#0b3afe4c9d1b8d05f5f017984c8cb15a", + "id": "84", + "recipe": "Downloaded", + "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", + "prev": "99822879bdd86a69aa08623a42893b48", + "rrev": "0b3afe4c9d1b8d05f5f017984c8cb15a", + "rrev_timestamp": 1678543821.122, + "prev_timestamp": 1678545773.636, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "fxdiv", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "MIT", + "author": null, + "description": "C99/C++ header-only library for division via fixed-point multiplication by inverse.", + "homepage": "https://github.com/Maratyszcza/FXdiv", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "cci.20200417", + "topics": [ + "integer-division" + ], + "package_type": "header-library", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64", + "compiler": "msvc", + "compiler.cppstd": "14", + "compiler.runtime": "dynamic", + "compiler.runtime_type": "Release", + "compiler.version": "194", + "build_type": "Release" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\fxdiv788fa919ccc7d\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "fxdiv/cci.20200417", + "info": {}, + "vendor": false, + "dependencies": {}, + "context": "host", + "test": false + }, + "85": { + "ref": "cmake/3.31.0#ba7dbf3b2fc9e70653b4c0fb5bbd2483", + "id": "85", + "recipe": "Downloaded", + "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", + "prev": "0d3590c43637cae952cc4bad766ca336", + "rrev": "ba7dbf3b2fc9e70653b4c0fb5bbd2483", + "rrev_timestamp": 1731316134.743, + "prev_timestamp": 1731316345.308, + "remote": "conancenter", + "binary_remote": "conancenter", + "build_id": null, + "binary": "Skip", + "invalid_build": false, + "info_invalid": null, + "name": "cmake", + "user": null, + "channel": null, + "url": "https://github.com/conan-io/conan-center-index", + "license": "BSD-3-Clause", + "author": null, + "description": "CMake, the cross-platform, open-source build system.", + "homepage": "https://github.com/Kitware/CMake", + "build_policy": null, + "upload_policy": null, + "revision_mode": "hash", + "provides": null, + "deprecated": null, + "win_bash": null, + "win_bash_run": null, + "default_options": null, + "options_description": null, + "version": "3.31.0", + "topics": [ + "build", + "installer" + ], + "package_type": "application", + "languages": [], + "settings": { + "os": "Windows", + "arch": "x86_64" + }, + "options": {}, + "options_definitions": {}, + "generators": [], + "python_requires": null, + "system_requires": {}, + "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\cmake2b5bd88ef96af\\e", + "source_folder": null, + "build_folder": null, + "generators_folder": null, + "package_folder": null, + "immutable_package_folder": null, + "cpp_info": { + "root": { + "includedirs": [ + "include" + ], + "srcdirs": null, + "libdirs": [ + "lib" + ], + "resdirs": null, + "bindirs": [ + "bin" + ], + "builddirs": null, + "frameworkdirs": null, + "system_libs": null, + "frameworks": null, + "libs": null, + "defines": null, + "cflags": null, + "cxxflags": null, + "sharedlinkflags": null, + "exelinkflags": null, + "objects": null, + "sysroot": null, + "requires": null, + "properties": null, + "exe": null, + "type": null, + "location": null, + "link_location": null, + "languages": null + } + }, + "conf_info": {}, + "label": "cmake/3.31.0", + "info": { + "settings": { + "os": "Windows", + "arch": "x86_64" + } + }, + "vendor": false, + "dependencies": {}, + "context": "build", + "test": false + } + }, + "root": { + "0": "None" + }, + "overrides": {}, + "resolved_ranges": { + "opencv/[*]": "opencv/4.10.0", + "zlib/[>=1.2.11 <2]": "zlib/1.3.1", + "libpng/[>=1.6 <2]": "libpng/1.6.44", + "xz_utils/[>=5.4.5 <6]": "xz_utils/5.4.5", + "cmake/[>=3.18 <4]": "cmake/3.31.0", + "ninja/[>=1.10.2 <2]": "ninja/1.12.1", + "pkgconf/[>=2.2 <3]": "pkgconf/2.2.0", + "openssl/[>=1.1 <4]": "openssl/3.3.2", + "tensorflow-lite/[*]": "tensorflow-lite/2.15.0", + "cmake/[>=3.16 <4]": "cmake/3.31.0" + }, + "replaced_requires": {}, + "error": null + } +} diff --git a/test/functional/toolchains/cmake/cmakedeps/test_cmakedeps_new.py b/test/functional/toolchains/cmake/cmakedeps/test_cmakedeps_new.py index 044865fe34b..8a49f9f3804 100644 --- a/test/functional/toolchains/cmake/cmakedeps/test_cmakedeps_new.py +++ b/test/functional/toolchains/cmake/cmakedeps/test_cmakedeps_new.py @@ -218,36 +218,46 @@ def test_libs_transitive(self, transitive_libraries, shared): assert "Conan: Target declared imported STATIC library 'matrix::matrix'" in c.out assert "Conan: Target declared imported STATIC library 'engine::engine'" in c.out - def test_multilevel_shared(self): + @pytest.mark.parametrize("shared", [False, True]) + def test_multilevel(self, shared): # TODO: make this shared fixtures in conftest for multi-level shared testing c = TestClient(default_server_user=True) c.run("new cmake_lib -d name=matrix -d version=0.1") - c.run(f"create . -o *:shared=True -c tools.cmake.cmakedeps:new={new_value}") + c.run(f"create . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value}") c.save({}, clean_first=True) c.run("new cmake_lib -d name=engine -d version=0.1 -d requires=matrix/0.1") - c.run(f"create . -o *:shared=True -c tools.cmake.cmakedeps:new={new_value}") + c.run(f"create . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value}") c.save({}, clean_first=True) c.run("new cmake_lib -d name=gamelib -d version=0.1 -d requires=engine/0.1") - c.run(f"create . -o *:shared=True -c tools.cmake.cmakedeps:new={new_value}") + c.run(f"create . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value}") c.save({}, clean_first=True) c.run("new cmake_exe -d name=game -d version=0.1 -d requires=gamelib/0.1") - c.run(f"create . -o *:shared=True -c tools.cmake.cmakedeps:new={new_value}") + c.run(f"create . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value}") assert "matrix/0.1: Hello World Release!" assert "engine/0.1: Hello World Release!" assert "gamelib/0.1: Hello World Release!" assert "game/0.1: Hello World Release!" + # Make sure that transitive headers are private, fails to include, traits work + game_cpp = c.load("src/game.cpp") + for header in ("matrix", "engine"): + new_game_cpp = f"#include <{header}.h>\n" + game_cpp + c.save({"src/game.cpp": new_game_cpp}) + c.run(f"build . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value}", + assert_error=True) + assert f"{header}.h" in c.out + # Make sure it works downloading to another cache c.run("upload * -r=default -c") c.run("remove * -c") c2 = TestClient(servers=c.servers) c2.run("new cmake_exe -d name=game -d version=0.1 -d requires=gamelib/0.1") - c2.run(f"create . -o *:shared=True -c tools.cmake.cmakedeps:new={new_value}") + c2.run(f"create . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value}") assert "matrix/0.1: Hello World Release!" assert "engine/0.1: Hello World Release!" @@ -329,6 +339,28 @@ def test_linkage_shared_static(self): assert "engine/0.1: Hello World Release!" assert "game/0.1: Hello World Release!" + @pytest.mark.parametrize("shared", [False, True]) + def test_transitive_headers(self, shared): + c = TestClient() + c.run("new cmake_lib -d name=matrix -d version=0.1") + c.run(f"create . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value} -tf=") + + c.save({}, clean_first=True) + c.run("new cmake_lib -d name=engine -d version=0.1 -d requires=matrix/0.1") + engine_h = c.load("include/engine.h") + engine_h = "#include \n" + engine_h + c.save({"include/engine.h": engine_h}) + conanfile = c.load("conanfile.py") + conanfile = conanfile.replace('self.requires("matrix/0.1")', + 'self.requires("matrix/0.1", transitive_headers=True)') + c.save({"conanfile.py": conanfile}) + c.run(f"create . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value} -tf=") + + c.save({}, clean_first=True) + c.run("new cmake_exe -d name=game -d version=0.1 -d requires=engine/0.1") + c.run(f"build . -o *:shared={shared} -c tools.cmake.cmakedeps:new={new_value}") + print(c.out) + @pytest.mark.tool("cmake") class TestLibsComponents: From e81025c73d0e40e9f2ba7f617544443e5e98faf6 Mon Sep 17 00:00:00 2001 From: memsharded Date: Mon, 13 Jan 2025 16:43:07 +0100 Subject: [PATCH 3/3] wip --- graph.json | 16016 --------------------------------------------------- 1 file changed, 16016 deletions(-) delete mode 100644 graph.json diff --git a/graph.json b/graph.json deleted file mode 100644 index 5f1fe0ce213..00000000000 --- a/graph.json +++ /dev/null @@ -1,16016 +0,0 @@ -{ - "graph": { - "nodes": { - "0": { - "ref": "conanfile", - "id": "0", - "recipe": "Cli", - "package_id": null, - "prev": null, - "rrev": null, - "rrev_timestamp": null, - "prev_timestamp": null, - "remote": null, - "binary_remote": null, - "build_id": null, - "binary": null, - "invalid_build": false, - "info_invalid": null, - "name": null, - "user": null, - "channel": null, - "url": null, - "license": null, - "author": null, - "description": null, - "homepage": null, - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": null, - "topics": null, - "package_type": "unknown", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": null, - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "cli", - "vendor": false, - "dependencies": { - "1": { - "ref": "opencv/4.10.0", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": null, - "visible": true - }, - "4": { - "ref": "protobuf/3.21.12", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "5": { - "ref": "ade/0.1.2d", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "9": { - "ref": "openexr/3.2.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "10": { - "ref": "imath/3.1.9", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "12": { - "ref": "libtiff/4.6.0", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "11": { - "ref": "libdeflate/1.19", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "6": { - "ref": "libjpeg/9e", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "14": { - "ref": "jbig/20160605", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "15": { - "ref": "zstd/1.5.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "18": { - "ref": "quirc/1.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "19": { - "ref": "ffmpeg/4.4.4", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "13": { - "ref": "xz_utils/5.4.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "21": { - "ref": "libiconv/1.17", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "23": { - "ref": "freetype/2.13.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "8": { - "ref": "libpng/1.6.44", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "20": { - "ref": "bzip2/1.0.8", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "24": { - "ref": "brotli/1.1.0", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "7": { - "ref": "openjpeg/2.5.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "30": { - "ref": "openh264/2.4.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "38": { - "ref": "vorbis/1.3.7", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "39": { - "ref": "ogg/1.3.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "40": { - "ref": "opus/1.4", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "41": { - "ref": "libx264/cci.20240224", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "45": { - "ref": "libx265/3.4", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "48": { - "ref": "libvpx/1.14.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "51": { - "ref": "libmp3lame/3.100", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "52": { - "ref": "libfdk_aac/2.0.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "16": { - "ref": "libwebp/1.3.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "53": { - "ref": "openssl/3.3.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "57": { - "ref": "libaom-av1/3.6.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "59": { - "ref": "dav1d/1.4.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "71": { - "ref": "tensorflow-lite/2.15.0", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": null, - "visible": true - }, - "72": { - "ref": "abseil/20230125.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "3": { - "ref": "eigen/3.4.0", - "run": false, - "libs": false, - "skip": true, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "73": { - "ref": "farmhash/cci.20190513", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "74": { - "ref": "fft/cci.20061228", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "75": { - "ref": "flatbuffers/23.5.26", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": null, - "visible": true - }, - "76": { - "ref": "gemmlowp/cci.20210928", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "77": { - "ref": "ruy/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "79": { - "ref": "intel-neon2sse/cci.20210225", - "run": false, - "libs": false, - "skip": true, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "80": { - "ref": "xnnpack/cci.20231026", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "78": { - "ref": "cpuinfo/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "83": { - "ref": "pthreadpool/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "81": { - "ref": "fp16/cci.20210320", - "run": false, - "libs": false, - "skip": true, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "82": { - "ref": "psimd/cci.20200517", - "run": false, - "libs": false, - "skip": true, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - }, - "84": { - "ref": "fxdiv/cci.20200417", - "run": false, - "libs": false, - "skip": true, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - } - }, - "context": "host", - "test": false - }, - "1": { - "ref": "opencv/4.10.0#9746006daba89d1a1e674831d9bbfcff", - "id": "1", - "recipe": "Downloaded", - "package_id": "17a90118883474477cab63d57e7845ba15377855", - "prev": "a9c6a4350dd9f87ae4e40b8182ea2883", - "rrev": "9746006daba89d1a1e674831d9bbfcff", - "rrev_timestamp": 1733256045.42, - "prev_timestamp": 1733259526.918, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "opencv", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "OpenCV (Open Source Computer Vision Library)", - "homepage": "https://opencv.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "parallel": false, - "with_ipp": false, - "with_eigen": true, - "neon": true, - "with_opencl": false, - "with_cuda": false, - "with_cublas": false, - "with_cufft": false, - "with_cudnn": false, - "cuda_arch_bin": null, - "cpu_baseline": null, - "cpu_dispatch": null, - "world": false, - "nonfree": false, - "with_flatbuffers": true, - "with_protobuf": true, - "with_vulkan": false, - "dnn_cuda": false, - "with_gtk": false, - "with_qt": false, - "with_wayland": true, - "with_avif": false, - "with_jpeg": "libjpeg", - "with_png": true, - "with_tiff": true, - "with_jpeg2000": "openjpeg", - "with_openexr": true, - "with_webp": true, - "with_gdal": false, - "with_gdcm": false, - "with_imgcodec_hdr": true, - "with_imgcodec_pfm": true, - "with_imgcodec_pxm": true, - "with_imgcodec_sunraster": true, - "with_msmf": true, - "with_msmf_dxva": true, - "with_quirc": true, - "with_ffmpeg": true, - "with_v4l": false, - "with_tesseract": true, - "contrib": "deprecated", - "contrib_freetype": "deprecated", - "contrib_sfm": "deprecated", - "with_ade": "deprecated", - "calib3d": true, - "dnn": true, - "features2d": true, - "flann": true, - "gapi": true, - "highgui": true, - "imgcodecs": true, - "imgproc": true, - "ml": true, - "objdetect": true, - "photo": true, - "stitching": true, - "video": true, - "videoio": true, - "alphamat": false, - "aruco": false, - "barcode": false, - "bgsegm": false, - "bioinspired": false, - "ccalib": false, - "cudaarithm": false, - "cudabgsegm": false, - "cudacodec": false, - "cudafeatures2d": false, - "cudafilters": false, - "cudaimgproc": false, - "cudalegacy": false, - "cudaobjdetect": false, - "cudaoptflow": false, - "cudastereo": false, - "cudawarping": false, - "cvv": false, - "datasets": false, - "dnn_objdetect": false, - "dnn_superres": false, - "dpm": false, - "face": false, - "freetype": false, - "fuzzy": false, - "hdf": false, - "hfs": false, - "img_hash": false, - "intensity_transform": false, - "line_descriptor": false, - "mcc": false, - "optflow": false, - "ovis": false, - "phase_unwrapping": false, - "plot": false, - "quality": false, - "rapid": false, - "reg": false, - "rgbd": false, - "saliency": false, - "sfm": false, - "shape": false, - "stereo": false, - "structured_light": false, - "superres": false, - "surface_matching": false, - "text": false, - "tracking": false, - "videostab": false, - "viz": false, - "wechat_qrcode": false, - "xfeatures2d": false, - "ximgproc": false, - "xobjdetect": false, - "xphoto": false - }, - "options_description": null, - "version": "4.10.0", - "topics": [ - "computer-vision", - "deep-learning", - "image-processing" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "alphamat": "False", - "aruco": "False", - "bgsegm": "False", - "bioinspired": "False", - "calib3d": "True", - "ccalib": "False", - "contrib": "deprecated", - "contrib_freetype": "deprecated", - "contrib_sfm": "deprecated", - "cpu_baseline": "None", - "cpu_dispatch": "None", - "cudaarithm": "False", - "cudabgsegm": "False", - "cudacodec": "False", - "cudafeatures2d": "False", - "cudafilters": "False", - "cudaimgproc": "False", - "cudalegacy": "False", - "cudaobjdetect": "False", - "cudaoptflow": "False", - "cudastereo": "False", - "cudawarping": "False", - "cvv": "False", - "datasets": "False", - "dnn": "True", - "dnn_objdetect": "False", - "dnn_superres": "False", - "dpm": "False", - "face": "False", - "features2d": "True", - "flann": "True", - "freetype": "False", - "fuzzy": "False", - "gapi": "True", - "hdf": "False", - "hfs": "False", - "highgui": "True", - "img_hash": "False", - "imgcodecs": "True", - "imgproc": "True", - "intensity_transform": "False", - "line_descriptor": "False", - "mcc": "False", - "ml": "True", - "nonfree": "False", - "objdetect": "True", - "optflow": "False", - "ovis": "False", - "parallel": "False", - "phase_unwrapping": "False", - "photo": "True", - "plot": "False", - "quality": "False", - "rapid": "False", - "reg": "False", - "rgbd": "False", - "saliency": "False", - "sfm": "False", - "shape": "False", - "shared": "False", - "stereo": "False", - "stitching": "True", - "structured_light": "False", - "superres": "False", - "surface_matching": "False", - "text": "False", - "tracking": "False", - "video": "True", - "videoio": "True", - "videostab": "False", - "viz": "False", - "wechat_qrcode": "False", - "with_ade": "deprecated", - "with_avif": "False", - "with_cuda": "False", - "with_eigen": "True", - "with_ffmpeg": "True", - "with_flatbuffers": "True", - "with_gdal": "False", - "with_gdcm": "False", - "with_imgcodec_hdr": "True", - "with_imgcodec_pfm": "True", - "with_imgcodec_pxm": "True", - "with_imgcodec_sunraster": "True", - "with_ipp": "False", - "with_jpeg": "libjpeg", - "with_jpeg2000": "openjpeg", - "with_msmf": "True", - "with_msmf_dxva": "True", - "with_opencl": "False", - "with_openexr": "True", - "with_png": "True", - "with_protobuf": "True", - "with_qt": "False", - "with_quirc": "True", - "with_tiff": "True", - "with_vulkan": "False", - "with_webp": "True", - "world": "False", - "xfeatures2d": "False", - "ximgproc": "False", - "xobjdetect": "False", - "xphoto": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "parallel": [ - "False", - "tbb", - "openmp", - "ANY" - ], - "with_ipp": [ - "False", - "intel-ipp", - "opencv-icv", - "ANY" - ], - "with_eigen": [ - "True", - "False", - "ANY" - ], - "with_opencl": [ - "True", - "False", - "ANY" - ], - "with_cuda": [ - "True", - "False", - "ANY" - ], - "cpu_baseline": [ - null, - "ANY", - "ANY" - ], - "cpu_dispatch": [ - null, - "ANY", - "ANY" - ], - "world": [ - "True", - "False", - "ANY" - ], - "nonfree": [ - "True", - "False", - "ANY" - ], - "with_flatbuffers": [ - "True", - "False", - "ANY" - ], - "with_protobuf": [ - "True", - "False", - "ANY" - ], - "with_vulkan": [ - "True", - "False", - "ANY" - ], - "with_qt": [ - "True", - "False", - "ANY" - ], - "with_avif": [ - "True", - "False", - "ANY" - ], - "with_jpeg": [ - "False", - "libjpeg", - "libjpeg-turbo", - "mozjpeg", - "ANY" - ], - "with_png": [ - "True", - "False", - "ANY" - ], - "with_tiff": [ - "True", - "False", - "ANY" - ], - "with_jpeg2000": [ - "False", - "jasper", - "openjpeg", - "ANY" - ], - "with_openexr": [ - "True", - "False", - "ANY" - ], - "with_webp": [ - "True", - "False", - "ANY" - ], - "with_gdal": [ - "True", - "False", - "ANY" - ], - "with_gdcm": [ - "True", - "False", - "ANY" - ], - "with_imgcodec_hdr": [ - "True", - "False", - "ANY" - ], - "with_imgcodec_pfm": [ - "True", - "False", - "ANY" - ], - "with_imgcodec_pxm": [ - "True", - "False", - "ANY" - ], - "with_imgcodec_sunraster": [ - "True", - "False", - "ANY" - ], - "with_msmf": [ - "True", - "False", - "ANY" - ], - "with_msmf_dxva": [ - "True", - "False", - "ANY" - ], - "with_quirc": [ - "True", - "False", - "ANY" - ], - "with_ffmpeg": [ - "True", - "False", - "ANY" - ], - "contrib": [ - "True", - "False", - "deprecated", - "ANY" - ], - "contrib_freetype": [ - "True", - "False", - "deprecated", - "ANY" - ], - "contrib_sfm": [ - "True", - "False", - "deprecated", - "ANY" - ], - "with_ade": [ - "True", - "False", - "deprecated", - "ANY" - ], - "calib3d": [ - "True", - "False", - "ANY" - ], - "dnn": [ - "True", - "False", - "ANY" - ], - "features2d": [ - "True", - "False", - "ANY" - ], - "flann": [ - "True", - "False", - "ANY" - ], - "gapi": [ - "True", - "False", - "ANY" - ], - "highgui": [ - "True", - "False", - "ANY" - ], - "imgcodecs": [ - "True", - "False", - "ANY" - ], - "imgproc": [ - "True", - "False", - "ANY" - ], - "ml": [ - "True", - "False", - "ANY" - ], - "objdetect": [ - "True", - "False", - "ANY" - ], - "photo": [ - "True", - "False", - "ANY" - ], - "stitching": [ - "True", - "False", - "ANY" - ], - "video": [ - "True", - "False", - "ANY" - ], - "videoio": [ - "True", - "False", - "ANY" - ], - "alphamat": [ - "True", - "False", - "ANY" - ], - "aruco": [ - "True", - "False", - "ANY" - ], - "bgsegm": [ - "True", - "False", - "ANY" - ], - "bioinspired": [ - "True", - "False", - "ANY" - ], - "ccalib": [ - "True", - "False", - "ANY" - ], - "cudaarithm": [ - "True", - "False", - "ANY" - ], - "cudabgsegm": [ - "True", - "False", - "ANY" - ], - "cudacodec": [ - "True", - "False", - "ANY" - ], - "cudafeatures2d": [ - "True", - "False", - "ANY" - ], - "cudafilters": [ - "True", - "False", - "ANY" - ], - "cudaimgproc": [ - "True", - "False", - "ANY" - ], - "cudalegacy": [ - "True", - "False", - "ANY" - ], - "cudaobjdetect": [ - "True", - "False", - "ANY" - ], - "cudaoptflow": [ - "True", - "False", - "ANY" - ], - "cudastereo": [ - "True", - "False", - "ANY" - ], - "cudawarping": [ - "True", - "False", - "ANY" - ], - "cvv": [ - "True", - "False", - "ANY" - ], - "datasets": [ - "True", - "False", - "ANY" - ], - "dnn_objdetect": [ - "True", - "False", - "ANY" - ], - "dnn_superres": [ - "True", - "False", - "ANY" - ], - "dpm": [ - "True", - "False", - "ANY" - ], - "face": [ - "True", - "False", - "ANY" - ], - "freetype": [ - "True", - "False", - "ANY" - ], - "fuzzy": [ - "True", - "False", - "ANY" - ], - "hdf": [ - "True", - "False", - "ANY" - ], - "hfs": [ - "True", - "False", - "ANY" - ], - "img_hash": [ - "True", - "False", - "ANY" - ], - "intensity_transform": [ - "True", - "False", - "ANY" - ], - "line_descriptor": [ - "True", - "False", - "ANY" - ], - "mcc": [ - "True", - "False", - "ANY" - ], - "optflow": [ - "True", - "False", - "ANY" - ], - "ovis": [ - "True", - "False", - "ANY" - ], - "phase_unwrapping": [ - "True", - "False", - "ANY" - ], - "plot": [ - "True", - "False", - "ANY" - ], - "quality": [ - "True", - "False", - "ANY" - ], - "rapid": [ - "True", - "False", - "ANY" - ], - "reg": [ - "True", - "False", - "ANY" - ], - "rgbd": [ - "True", - "False", - "ANY" - ], - "saliency": [ - "True", - "False", - "ANY" - ], - "sfm": [ - "True", - "False", - "ANY" - ], - "shape": [ - "True", - "False", - "ANY" - ], - "stereo": [ - "True", - "False", - "ANY" - ], - "structured_light": [ - "True", - "False", - "ANY" - ], - "superres": [ - "True", - "False", - "ANY" - ], - "surface_matching": [ - "True", - "False", - "ANY" - ], - "text": [ - "True", - "False", - "ANY" - ], - "tracking": [ - "True", - "False", - "ANY" - ], - "videostab": [ - "True", - "False", - "ANY" - ], - "viz": [ - "True", - "False", - "ANY" - ], - "wechat_qrcode": [ - "True", - "False", - "ANY" - ], - "xfeatures2d": [ - "True", - "False", - "ANY" - ], - "ximgproc": [ - "True", - "False", - "ANY" - ], - "xobjdetect": [ - "True", - "False", - "ANY" - ], - "xphoto": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\opencf781c3ced090c\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "opencv/4.10.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "alphamat": "False", - "aruco": "False", - "bgsegm": "False", - "bioinspired": "False", - "calib3d": "True", - "ccalib": "False", - "cpu_baseline": null, - "cpu_dispatch": null, - "cudaarithm": "False", - "cudabgsegm": "False", - "cudacodec": "False", - "cudafeatures2d": "False", - "cudafilters": "False", - "cudaimgproc": "False", - "cudalegacy": "False", - "cudaobjdetect": "False", - "cudaoptflow": "False", - "cudastereo": "False", - "cudawarping": "False", - "cvv": "False", - "datasets": "False", - "dnn": "True", - "dnn_objdetect": "False", - "dnn_superres": "False", - "dpm": "False", - "face": "False", - "features2d": "True", - "flann": "True", - "freetype": "False", - "fuzzy": "False", - "gapi": "True", - "hdf": "False", - "hfs": "False", - "highgui": "True", - "img_hash": "False", - "imgcodecs": "True", - "imgproc": "True", - "intensity_transform": "False", - "line_descriptor": "False", - "mcc": "False", - "ml": "True", - "nonfree": "False", - "objdetect": "True", - "optflow": "False", - "ovis": "False", - "parallel": "False", - "phase_unwrapping": "False", - "photo": "True", - "plot": "False", - "quality": "False", - "rapid": "False", - "reg": "False", - "rgbd": "False", - "saliency": "False", - "sfm": "False", - "shape": "False", - "shared": "False", - "stereo": "False", - "stitching": "True", - "structured_light": "False", - "superres": "False", - "surface_matching": "False", - "text": "False", - "tracking": "False", - "video": "True", - "videoio": "True", - "videostab": "False", - "viz": "False", - "wechat_qrcode": "False", - "with_avif": "False", - "with_cuda": "False", - "with_eigen": "True", - "with_ffmpeg": "True", - "with_flatbuffers": "True", - "with_gdal": "False", - "with_gdcm": "False", - "with_imgcodec_hdr": "True", - "with_imgcodec_pfm": "True", - "with_imgcodec_pxm": "True", - "with_imgcodec_sunraster": "True", - "with_ipp": "False", - "with_jpeg": "libjpeg", - "with_jpeg2000": "openjpeg", - "with_msmf": "True", - "with_msmf_dxva": "True", - "with_opencl": "False", - "with_openexr": "True", - "with_png": "True", - "with_protobuf": "True", - "with_qt": "False", - "with_quirc": "True", - "with_tiff": "True", - "with_vulkan": "False", - "with_webp": "True", - "world": "False", - "xfeatures2d": "False", - "ximgproc": "False", - "xobjdetect": "False", - "xphoto": "False" - }, - "requires": [ - "eigen/3.4.0#2e192482a8acff96fe34766adca2b24c:da39a3ee5e6b4b0d3255bfef95601890afd80709", - "protobuf/3.21.Z", - "ade/0.1.Z", - "openexr/3.2.Z", - "imath/3.1.Z", - "libtiff/4.6.Z", - "libdeflate/1.19.Z", - "libjpeg/9e", - "jbig/20160605.0.Z", - "zstd/1.5.Z", - "quirc/1.2.Z", - "ffmpeg/4.4.Z", - "xz_utils/5.4.Z", - "libiconv/1.17.Z", - "freetype/2.13.Z", - "libpng/1.6.Z", - "bzip2/1.0.Z", - "brotli/1.1.Z", - "openjpeg/2.5.Z", - "openh264/2.4.Z", - "vorbis/1.3.Z", - "ogg/1.3.Z", - "opus/1.4.Z", - "libx264/cci", - "libx265/3.4.Z", - "libvpx/1.14.Z", - "libmp3lame/3.100.Z", - "libfdk_aac/2.0.Z", - "libwebp/1.3.Z", - "openssl/3.3.Z", - "zlib/1.3.Z", - "libaom-av1/3.6.Z", - "dav1d/1.4.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "3": { - "ref": "eigen/3.4.0", - "run": false, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - }, - "4": { - "ref": "protobuf/3.21.12", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": true, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "5": { - "ref": "ade/0.1.2d", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "9": { - "ref": "openexr/3.2.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "10": { - "ref": "imath/3.1.9", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "12": { - "ref": "libtiff/4.6.0", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "11": { - "ref": "libdeflate/1.19", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "6": { - "ref": "libjpeg/9e", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "14": { - "ref": "jbig/20160605", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "15": { - "ref": "zstd/1.5.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "18": { - "ref": "quirc/1.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "19": { - "ref": "ffmpeg/4.4.4", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "13": { - "ref": "xz_utils/5.4.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "21": { - "ref": "libiconv/1.17", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "23": { - "ref": "freetype/2.13.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "8": { - "ref": "libpng/1.6.44", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "20": { - "ref": "bzip2/1.0.8", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "24": { - "ref": "brotli/1.1.0", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "7": { - "ref": "openjpeg/2.5.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "30": { - "ref": "openh264/2.4.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "38": { - "ref": "vorbis/1.3.7", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "39": { - "ref": "ogg/1.3.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "40": { - "ref": "opus/1.4", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "41": { - "ref": "libx264/cci.20240224", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "45": { - "ref": "libx265/3.4", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "48": { - "ref": "libvpx/1.14.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "51": { - "ref": "libmp3lame/3.100", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "52": { - "ref": "libfdk_aac/2.0.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "16": { - "ref": "libwebp/1.3.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "53": { - "ref": "openssl/3.3.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": true, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "57": { - "ref": "libaom-av1/3.6.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "59": { - "ref": "dav1d/1.4.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "69": { - "ref": "protobuf/3.21.12", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "2": { - "ref": "zlib/1.3.1#b8bc2603263cf7eccbd6e17e66b0ed76", - "id": "2", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "79ec8125ebd42591897da4cf270e6146", - "rrev": "b8bc2603263cf7eccbd6e17e66b0ed76", - "rrev_timestamp": 1733936244.862, - "prev_timestamp": 1733936492.457, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "zlib", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Zlib", - "author": null, - "description": "A Massively Spiffy Yet Delicately Unobtrusive Compression Library (Also Free, Not to Mention Unencumbered by Patents)", - "homepage": "https://zlib.net", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "1.3.1", - "topics": [ - "zlib", - "compression" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\zlib204752602052d\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "zlib/1.3.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "3": { - "ref": "eigen/3.4.0#2e192482a8acff96fe34766adca2b24c", - "id": "3", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "b2e7c2d86c5d1dbefc534889aa72e12c", - "rrev": "2e192482a8acff96fe34766adca2b24c", - "rrev_timestamp": 1680436083.8, - "prev_timestamp": 1680436317.005, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "eigen", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "MPL-2.0", - "LGPL-3.0-or-later" - ], - "author": null, - "description": "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms.", - "homepage": "http://eigen.tuxfamily.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "MPL2_only": false - }, - "options_description": null, - "version": "3.4.0", - "topics": [ - "algebra", - "linear-algebra", - "matrix", - "vector", - "numerical", - "header-only" - ], - "package_type": "header-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "MPL2_only": "False" - }, - "options_definitions": { - "MPL2_only": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\eigenecaf3dc594b0c\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "eigen/3.4.0", - "info": {}, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "4": { - "ref": "protobuf/3.21.12#d1ddaac72b361494fe277377dbfe94c7", - "id": "4", - "recipe": "Downloaded", - "package_id": "9a546d3c2c7b2b02ebec30698e8536173849d86f", - "prev": "8ff84e2093c206244b0b01fab5b9d4db", - "rrev": "d1ddaac72b361494fe277377dbfe94c7", - "rrev_timestamp": 1732221817.822, - "prev_timestamp": 1732281685.725, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "protobuf", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "Protocol Buffers - Google's data interchange format", - "homepage": "https://github.com/protocolbuffers/protobuf", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "with_zlib": true, - "with_rtti": true, - "lite": false, - "upb": false, - "debug_suffix": true - }, - "options_description": null, - "version": "3.21.12", - "topics": [ - "protocol-buffers", - "protocol-compiler", - "serialization", - "rpc", - "protocol-compiler" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "debug_suffix": "True", - "lite": "False", - "shared": "False", - "with_rtti": "True", - "with_zlib": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "with_zlib": [ - "True", - "False", - "ANY" - ], - "with_rtti": [ - "True", - "False", - "ANY" - ], - "lite": [ - "True", - "False", - "ANY" - ], - "debug_suffix": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\protoe97b0f2d4b3d3\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "protobuf/3.21.12", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "debug_suffix": "True", - "lite": "False", - "shared": "False", - "with_rtti": "True", - "with_zlib": "True" - }, - "requires": [ - "zlib/1.3.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - } - }, - "context": "host", - "test": false - }, - "5": { - "ref": "ade/0.1.2d#f225d0a218a7c9fbb81746806c7de53d", - "id": "5", - "recipe": "Downloaded", - "package_id": "c13a22a41ecd72caf9e556f68b406569547e0861", - "prev": "b78b0d2439efcd647ad21fbe8ccb0487", - "rrev": "f225d0a218a7c9fbb81746806c7de53d", - "rrev_timestamp": 1697752528.048, - "prev_timestamp": 1697777067.164, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "ade", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Graph construction, manipulation, and processing framework", - "homepage": "https://github.com/opencv/ade", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "fPIC": true - }, - "options_description": null, - "version": "0.1.2d", - "topics": [ - "graphs", - "opencv" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ade3cb58bebe9d3b\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ade/0.1.2d", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "6": { - "ref": "libjpeg/9e#ebca87d1efc798db99cc9bbe2297679a", - "id": "6", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "0d8c8743142059b2fdb30102da469d3c", - "rrev": "ebca87d1efc798db99cc9bbe2297679a", - "rrev_timestamp": 1723665906.622, - "prev_timestamp": 1723667924.895, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libjpeg", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "IJG", - "author": null, - "description": "Libjpeg is a widely used C library for reading and writing JPEG image files.", - "homepage": "http://ijg.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "9e", - "topics": [ - "image", - "format", - "jpg", - "jpeg", - "picture", - "multimedia", - "graphics" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libjpaa8953bc7a0bb\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libjpeg/9e", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "7": { - "ref": "openjpeg/2.5.2#6f7b733e151d1bbf5ed05cbabb846828", - "id": "7", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "cb7dcba0a6fa99dfe7b8521bc8d339d2", - "rrev": "6f7b733e151d1bbf5ed05cbabb846828", - "rrev_timestamp": 1709653017.024, - "prev_timestamp": 1709654154.624, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "openjpeg", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "OpenJPEG is an open-source JPEG 2000 codec written in C language.", - "homepage": "https://github.com/uclouvain/openjpeg", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "build_codec": false - }, - "options_description": null, - "version": "2.5.2", - "topics": [ - "jpeg2000", - "jp2", - "openjpeg", - "image", - "multimedia", - "format", - "graphics" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "build_codec": "False", - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "build_codec": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\openj67fd16e1c0b40\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "openjpeg/2.5.2", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "8": { - "ref": "libpng/1.6.44#9e1aa08fb46946c7c91e4ae03bd49811", - "id": "8", - "recipe": "Downloaded", - "package_id": "e0d2306461d10438fbd847f0556a0f0ac5653d3a", - "prev": "aae40fd00dee0d85633d5a33c7be64b9", - "rrev": "9e1aa08fb46946c7c91e4ae03bd49811", - "rrev_timestamp": 1726517437.225, - "prev_timestamp": 1726518732.95, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libpng", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "libpng-2.0", - "author": null, - "description": "libpng is the official PNG file format reference library.", - "homepage": "http://www.libpng.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "neon": true, - "msa": true, - "sse": true, - "vsx": true, - "api_prefix": "" - }, - "options_description": null, - "version": "1.6.44", - "topics": [ - "png", - "graphics", - "image" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "api_prefix": "", - "shared": "False", - "sse": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "sse": [ - "True", - "False", - "ANY" - ], - "api_prefix": [ - "ANY", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libpn96b6230f1a784\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libpng/1.6.44", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "api_prefix": "", - "shared": "False", - "sse": "True" - }, - "requires": [ - "zlib/1.3.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - } - }, - "context": "host", - "test": false - }, - "9": { - "ref": "openexr/3.2.3#9729562cfe706ed8d5a9a7f398d09eab", - "id": "9", - "recipe": "Downloaded", - "package_id": "813bcfcaffb93e3d0c170007e643e0d8d07e98e1", - "prev": "1d3ea356d68e451e635317e7f3c994d2", - "rrev": "9729562cfe706ed8d5a9a7f398d09eab", - "rrev_timestamp": 1727884743.243, - "prev_timestamp": 1727886260.516, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "openexr", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications.", - "homepage": "https://github.com/AcademySoftwareFoundation/openexr", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "3.2.3", - "topics": [ - "openexr", - "hdr", - "image", - "picture" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\opene07dff185ed11c\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "openexr/3.2.3", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "requires": [ - "zlib/1.3.Z", - "imath/3.1.Z", - "libdeflate/1.19.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "10": { - "ref": "imath/3.1.9", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": true, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "11": { - "ref": "libdeflate/1.19", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - } - }, - "context": "host", - "test": false - }, - "10": { - "ref": "imath/3.1.9#2e7f5802b247baae47235b4c8d5642c9", - "id": "10", - "recipe": "Downloaded", - "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", - "prev": "4d80d6bd068a78efcf6449d464489308", - "rrev": "2e7f5802b247baae47235b4c8d5642c9", - "rrev_timestamp": 1708982814.433, - "prev_timestamp": 1708984031.13, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "imath", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics.", - "homepage": "https://github.com/AcademySoftwareFoundation/Imath", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "3.1.9", - "topics": [ - "computer-graphics", - "matrix", - "openexr", - "3d-vector" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\imath3353ad56cbc60\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "imath/3.1.9", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "11": { - "ref": "libdeflate/1.19#3ea74a4549efc14d4b1202dc4bfbf602", - "id": "11", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "8770475aa00261bfaf612b6b29ef567a", - "rrev": "3ea74a4549efc14d4b1202dc4bfbf602", - "rrev_timestamp": 1694914376.803, - "prev_timestamp": 1694958185.555, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libdeflate", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MIT", - "author": null, - "description": "Heavily optimized library for DEFLATE/zlib/gzip compression and decompression.", - "homepage": "https://github.com/ebiggers/libdeflate", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "1.19", - "topics": [ - "compression", - "decompression", - "deflate", - "zlib", - "gzip" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libde5a709949339ac\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libdeflate/1.19", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "12": { - "ref": "libtiff/4.6.0#7abb55ba426a35793216db44d7e16eca", - "id": "12", - "recipe": "Downloaded", - "package_id": "023e7239966dab8ff6a097a53572c2d923350090", - "prev": "bdbc7fed932b6dc2ad46b25f7aaea931", - "rrev": "7abb55ba426a35793216db44d7e16eca", - "rrev_timestamp": 1732278951.205, - "prev_timestamp": 1732280380.194, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libtiff", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "libtiff", - "author": null, - "description": "Library for Tag Image File Format (TIFF)", - "homepage": "http://www.simplesystems.org/libtiff", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "lzma": true, - "jpeg": "libjpeg", - "zlib": true, - "libdeflate": true, - "zstd": true, - "jbig": true, - "webp": true, - "cxx": true - }, - "options_description": null, - "version": "4.6.0", - "topics": [ - "tiff", - "image", - "bigtiff", - "tagged-image-file-format" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "cxx": "True", - "jbig": "True", - "jpeg": "libjpeg", - "libdeflate": "True", - "lzma": "True", - "shared": "False", - "webp": "True", - "zlib": "True", - "zstd": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "lzma": [ - "True", - "False", - "ANY" - ], - "jpeg": [ - "False", - "libjpeg", - "libjpeg-turbo", - "mozjpeg", - "ANY" - ], - "zlib": [ - "True", - "False", - "ANY" - ], - "libdeflate": [ - "True", - "False", - "ANY" - ], - "zstd": [ - "True", - "False", - "ANY" - ], - "jbig": [ - "True", - "False", - "ANY" - ], - "webp": [ - "True", - "False", - "ANY" - ], - "cxx": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libtib334db11af335\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libtiff/4.6.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "cxx": "True", - "jbig": "True", - "jpeg": "libjpeg", - "libdeflate": "True", - "lzma": "True", - "shared": "False", - "webp": "True", - "zlib": "True", - "zstd": "True" - }, - "requires": [ - "zlib/1.3.Z", - "libdeflate/1.19.Z", - "xz_utils/5.4.Z", - "libjpeg/9e", - "jbig/20160605.0.Z", - "zstd/1.5.Z", - "libwebp/1.3.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "11": { - "ref": "libdeflate/1.19", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "13": { - "ref": "xz_utils/5.4.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "6": { - "ref": "libjpeg/9e", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "14": { - "ref": "jbig/20160605", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "15": { - "ref": "zstd/1.5.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "16": { - "ref": "libwebp/1.3.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "17": { - "ref": "cmake/3.31.0", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "13": { - "ref": "xz_utils/5.4.5#b885d1d79c9d30cff3803f7f551dbe66", - "id": "13", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "534dbf140c5987e252fe32deb9de8192", - "rrev": "b885d1d79c9d30cff3803f7f551dbe66", - "rrev_timestamp": 1724318972.064, - "prev_timestamp": 1724319967.389, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "xz_utils", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "Unlicense", - "LGPL-2.1-or-later", - "GPL-2.0-or-later", - "GPL-3.0-or-later" - ], - "author": null, - "description": "XZ Utils is free general-purpose data compression software with a high compression ratio. XZ Utils were written for POSIX-like systems, but also work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils.", - "homepage": "https://tukaani.org/xz", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "5.4.5", - "topics": [ - "lzma", - "xz", - "compression" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\xz_utc36de450e687d\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "xz_utils/5.4.5", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "14": { - "ref": "jbig/20160605#2d29fa02aacd76902e0d2cbbc24631ef", - "id": "14", - "recipe": "Downloaded", - "package_id": "98edcdfcd9fb7b473373eb7fe0d66af0e897e33e", - "prev": "15e80bf3d1dd518581ce57babc1260c3", - "rrev": "2d29fa02aacd76902e0d2cbbc24631ef", - "rrev_timestamp": 1676066289.194, - "prev_timestamp": 1686984021.59, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "jbig", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "GPL-2.0", - "author": null, - "description": "jbig for the Windows build of ImageMagick", - "homepage": "https://github.com/ImageMagick/jbig", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "build_executables": true - }, - "options_description": null, - "version": "20160605", - "topics": [ - "jbig", - "imagemagick", - "window", - "graphic" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "build_executables": "True", - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "build_executables": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\jbig3182ce73d79c8\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "jbig/20160605", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "build_executables": "True", - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "15": { - "ref": "zstd/1.5.5#1f239731dc45147c7fc2f54bfbde73df", - "id": "15", - "recipe": "Downloaded", - "package_id": "c60581f2463ba21c248b22570dc9f7e6dcb636f7", - "prev": "6fa725339a69a39ca227b554401b4d28", - "rrev": "1f239731dc45147c7fc2f54bfbde73df", - "rrev_timestamp": 1715599909.17, - "prev_timestamp": 1715600926.185, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "zstd", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "Zstandard - Fast real-time compression algorithm", - "homepage": "https://github.com/facebook/zstd", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "threading": true, - "build_programs": true - }, - "options_description": null, - "version": "1.5.5", - "topics": [ - "zstandard", - "compression", - "algorithm", - "decoder" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "build_programs": "True", - "shared": "False", - "threading": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "threading": [ - "True", - "False", - "ANY" - ], - "build_programs": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\zstdc952ff066366b\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "zstd/1.5.5", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "build_programs": "True", - "shared": "False", - "threading": "True" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "16": { - "ref": "libwebp/1.3.2#52f69c4a31c5cf033fdd9230d77a8e38", - "id": "16", - "recipe": "Downloaded", - "package_id": "653db3a579025ea1bd9ddbca1ed97a34042b07bc", - "prev": "e758295d7002a9bba78e7644fc8f4df0", - "rrev": "52f69c4a31c5cf033fdd9230d77a8e38", - "rrev_timestamp": 1694806992.059, - "prev_timestamp": 1694816088.898, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libwebp", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "Library to encode and decode images in WebP format", - "homepage": "https://chromium.googlesource.com/webm/libwebp", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "with_simd": true, - "near_lossless": true, - "swap_16bit_csp": false - }, - "options_description": null, - "version": "1.3.2", - "topics": [ - "image", - "libwebp", - "webp", - "decoding", - "encoding" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "near_lossless": "True", - "shared": "False", - "swap_16bit_csp": "False", - "with_simd": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "with_simd": [ - "True", - "False", - "ANY" - ], - "near_lossless": [ - "True", - "False", - "ANY" - ], - "swap_16bit_csp": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libwe32a5faf269811\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libwebp/1.3.2", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "near_lossless": "True", - "shared": "False", - "swap_16bit_csp": "False", - "with_simd": "True" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "17": { - "ref": "cmake/3.31.0#ba7dbf3b2fc9e70653b4c0fb5bbd2483", - "id": "17", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "0d3590c43637cae952cc4bad766ca336", - "rrev": "ba7dbf3b2fc9e70653b4c0fb5bbd2483", - "rrev_timestamp": 1731316134.743, - "prev_timestamp": 1731316345.308, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "cmake", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "CMake, the cross-platform, open-source build system.", - "homepage": "https://github.com/Kitware/CMake", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "3.31.0", - "topics": [ - "build", - "installer" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\cmake2b5bd88ef96af\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "cmake/3.31.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "18": { - "ref": "quirc/1.2#92179dd521786aea0729f2c859cbbcb9", - "id": "18", - "recipe": "Downloaded", - "package_id": "20029e17f0b8792b803e478a6a51139592160580", - "prev": "ca4e9e31e54ec55d8db06e8a2b70a6a2", - "rrev": "92179dd521786aea0729f2c859cbbcb9", - "rrev_timestamp": 1684855866.655, - "prev_timestamp": 1687018888.825, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "quirc", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "ISC", - "author": null, - "description": "QR decoder library", - "homepage": "https://github.com/dlbeer/quirc", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "max_regions": 254 - }, - "options_description": null, - "version": "1.2", - "topics": [ - "qr", - "decoder" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "max_regions": "254", - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "max_regions": [ - "254", - "65534", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\quirccaa783c72b092\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "quirc/1.2", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "max_regions": "254", - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "19": { - "ref": "ffmpeg/4.4.4#4a8420d12e27d959e07b23c9b06c650b", - "id": "19", - "recipe": "Downloaded", - "package_id": "3a197c11022a3a97fc968d82d3b952bba8d6e4d2", - "prev": "331a6a91c666eaf4953cb3e004b45db0", - "rrev": "4a8420d12e27d959e07b23c9b06c650b", - "rrev_timestamp": 1723789819.089, - "prev_timestamp": 1723800160.081, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "ffmpeg", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "LGPL-2.1-or-later", - "GPL-2.0-or-later" - ], - "author": null, - "description": "A complete, cross-platform solution to record, convert and stream audio and video", - "homepage": "https://ffmpeg.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": true, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "avdevice": true, - "avcodec": true, - "avformat": true, - "swresample": true, - "swscale": true, - "postproc": true, - "avfilter": true, - "with_asm": true, - "with_zlib": true, - "with_bzip2": true, - "with_lzma": true, - "with_libiconv": true, - "with_freetype": true, - "with_openjpeg": true, - "with_openh264": true, - "with_opus": true, - "with_vorbis": true, - "with_zeromq": false, - "with_sdl": false, - "with_libx264": true, - "with_libx265": true, - "with_libvpx": true, - "with_libmp3lame": true, - "with_libfdk_aac": true, - "with_libwebp": true, - "with_ssl": "openssl", - "with_libalsa": true, - "with_pulse": true, - "with_vaapi": true, - "with_vdpau": true, - "with_vulkan": false, - "with_xcb": true, - "with_appkit": true, - "with_avfoundation": true, - "with_coreimage": true, - "with_audiotoolbox": true, - "with_videotoolbox": true, - "with_programs": true, - "with_libsvtav1": true, - "with_libaom": true, - "with_libdav1d": true, - "with_libdrm": false, - "with_jni": false, - "with_mediacodec": false, - "with_xlib": true, - "disable_everything": false, - "disable_all_encoders": false, - "disable_encoders": null, - "enable_encoders": null, - "disable_all_decoders": false, - "disable_decoders": null, - "enable_decoders": null, - "disable_all_hardware_accelerators": false, - "disable_hardware_accelerators": null, - "enable_hardware_accelerators": null, - "disable_all_muxers": false, - "disable_muxers": null, - "enable_muxers": null, - "disable_all_demuxers": false, - "disable_demuxers": null, - "enable_demuxers": null, - "disable_all_parsers": false, - "disable_parsers": null, - "enable_parsers": null, - "disable_all_bitstream_filters": false, - "disable_bitstream_filters": null, - "enable_bitstream_filters": null, - "disable_all_protocols": false, - "disable_protocols": null, - "enable_protocols": null, - "disable_all_devices": false, - "disable_all_input_devices": false, - "disable_input_devices": null, - "enable_input_devices": null, - "disable_all_output_devices": false, - "disable_output_devices": null, - "enable_output_devices": null, - "disable_all_filters": false, - "disable_filters": null, - "enable_filters": null - }, - "options_description": null, - "version": "4.4.4", - "topics": [ - "multimedia", - "audio", - "video", - "encoder", - "decoder", - "encoding", - "decoding", - "transcoding", - "multiplexer", - "demultiplexer", - "streaming" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "avcodec": "True", - "avdevice": "True", - "avfilter": "True", - "avformat": "True", - "disable_all_bitstream_filters": "False", - "disable_all_decoders": "False", - "disable_all_demuxers": "False", - "disable_all_devices": "False", - "disable_all_encoders": "False", - "disable_all_filters": "False", - "disable_all_hardware_accelerators": "False", - "disable_all_input_devices": "False", - "disable_all_muxers": "False", - "disable_all_output_devices": "False", - "disable_all_parsers": "False", - "disable_all_protocols": "False", - "disable_bitstream_filters": "None", - "disable_decoders": "None", - "disable_demuxers": "None", - "disable_encoders": "None", - "disable_everything": "False", - "disable_filters": "None", - "disable_hardware_accelerators": "None", - "disable_input_devices": "None", - "disable_muxers": "None", - "disable_output_devices": "None", - "disable_parsers": "None", - "disable_protocols": "None", - "enable_bitstream_filters": "None", - "enable_decoders": "None", - "enable_demuxers": "None", - "enable_encoders": "None", - "enable_filters": "None", - "enable_hardware_accelerators": "None", - "enable_input_devices": "None", - "enable_muxers": "None", - "enable_output_devices": "None", - "enable_parsers": "None", - "enable_protocols": "None", - "postproc": "True", - "shared": "False", - "swresample": "True", - "swscale": "True", - "with_asm": "True", - "with_bzip2": "True", - "with_freetype": "True", - "with_libaom": "True", - "with_libdav1d": "True", - "with_libfdk_aac": "True", - "with_libiconv": "True", - "with_libmp3lame": "True", - "with_libvpx": "True", - "with_libwebp": "True", - "with_libx264": "True", - "with_libx265": "True", - "with_lzma": "True", - "with_openh264": "True", - "with_openjpeg": "True", - "with_opus": "True", - "with_programs": "True", - "with_sdl": "False", - "with_ssl": "openssl", - "with_vorbis": "True", - "with_zeromq": "False", - "with_zlib": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "avdevice": [ - "True", - "False", - "ANY" - ], - "avcodec": [ - "True", - "False", - "ANY" - ], - "avformat": [ - "True", - "False", - "ANY" - ], - "swresample": [ - "True", - "False", - "ANY" - ], - "swscale": [ - "True", - "False", - "ANY" - ], - "postproc": [ - "True", - "False", - "ANY" - ], - "avfilter": [ - "True", - "False", - "ANY" - ], - "with_asm": [ - "True", - "False", - "ANY" - ], - "with_zlib": [ - "True", - "False", - "ANY" - ], - "with_bzip2": [ - "True", - "False", - "ANY" - ], - "with_lzma": [ - "True", - "False", - "ANY" - ], - "with_libiconv": [ - "True", - "False", - "ANY" - ], - "with_freetype": [ - "True", - "False", - "ANY" - ], - "with_openjpeg": [ - "True", - "False", - "ANY" - ], - "with_openh264": [ - "True", - "False", - "ANY" - ], - "with_opus": [ - "True", - "False", - "ANY" - ], - "with_vorbis": [ - "True", - "False", - "ANY" - ], - "with_zeromq": [ - "True", - "False", - "ANY" - ], - "with_sdl": [ - "True", - "False", - "ANY" - ], - "with_libx264": [ - "True", - "False", - "ANY" - ], - "with_libx265": [ - "True", - "False", - "ANY" - ], - "with_libvpx": [ - "True", - "False", - "ANY" - ], - "with_libmp3lame": [ - "True", - "False", - "ANY" - ], - "with_libfdk_aac": [ - "True", - "False", - "ANY" - ], - "with_libwebp": [ - "True", - "False", - "ANY" - ], - "with_ssl": [ - "False", - "openssl", - "securetransport", - "ANY" - ], - "with_programs": [ - "True", - "False", - "ANY" - ], - "with_libaom": [ - "True", - "False", - "ANY" - ], - "with_libdav1d": [ - "True", - "False", - "ANY" - ], - "disable_everything": [ - "True", - "False", - "ANY" - ], - "disable_all_encoders": [ - "True", - "False", - "ANY" - ], - "disable_encoders": [ - null, - "ANY", - "ANY" - ], - "enable_encoders": [ - null, - "ANY", - "ANY" - ], - "disable_all_decoders": [ - "True", - "False", - "ANY" - ], - "disable_decoders": [ - null, - "ANY", - "ANY" - ], - "enable_decoders": [ - null, - "ANY", - "ANY" - ], - "disable_all_hardware_accelerators": [ - "True", - "False", - "ANY" - ], - "disable_hardware_accelerators": [ - null, - "ANY", - "ANY" - ], - "enable_hardware_accelerators": [ - null, - "ANY", - "ANY" - ], - "disable_all_muxers": [ - "True", - "False", - "ANY" - ], - "disable_muxers": [ - null, - "ANY", - "ANY" - ], - "enable_muxers": [ - null, - "ANY", - "ANY" - ], - "disable_all_demuxers": [ - "True", - "False", - "ANY" - ], - "disable_demuxers": [ - null, - "ANY", - "ANY" - ], - "enable_demuxers": [ - null, - "ANY", - "ANY" - ], - "disable_all_parsers": [ - "True", - "False", - "ANY" - ], - "disable_parsers": [ - null, - "ANY", - "ANY" - ], - "enable_parsers": [ - null, - "ANY", - "ANY" - ], - "disable_all_bitstream_filters": [ - "True", - "False", - "ANY" - ], - "disable_bitstream_filters": [ - null, - "ANY", - "ANY" - ], - "enable_bitstream_filters": [ - null, - "ANY", - "ANY" - ], - "disable_all_protocols": [ - "True", - "False", - "ANY" - ], - "disable_protocols": [ - null, - "ANY", - "ANY" - ], - "enable_protocols": [ - null, - "ANY", - "ANY" - ], - "disable_all_devices": [ - "True", - "False", - "ANY" - ], - "disable_all_input_devices": [ - "True", - "False", - "ANY" - ], - "disable_input_devices": [ - null, - "ANY", - "ANY" - ], - "enable_input_devices": [ - null, - "ANY", - "ANY" - ], - "disable_all_output_devices": [ - "True", - "False", - "ANY" - ], - "disable_output_devices": [ - null, - "ANY", - "ANY" - ], - "enable_output_devices": [ - null, - "ANY", - "ANY" - ], - "disable_all_filters": [ - "True", - "False", - "ANY" - ], - "disable_filters": [ - null, - "ANY", - "ANY" - ], - "enable_filters": [ - null, - "ANY", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ffmpe01b2d074a68ec\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ffmpeg/4.4.4", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "avcodec": "True", - "avdevice": "True", - "avfilter": "True", - "avformat": "True", - "disable_all_bitstream_filters": "False", - "disable_all_decoders": "False", - "disable_all_demuxers": "False", - "disable_all_devices": "False", - "disable_all_encoders": "False", - "disable_all_filters": "False", - "disable_all_hardware_accelerators": "False", - "disable_all_input_devices": "False", - "disable_all_muxers": "False", - "disable_all_output_devices": "False", - "disable_all_parsers": "False", - "disable_all_protocols": "False", - "disable_bitstream_filters": null, - "disable_decoders": null, - "disable_demuxers": null, - "disable_encoders": null, - "disable_everything": "False", - "disable_filters": null, - "disable_hardware_accelerators": null, - "disable_input_devices": null, - "disable_muxers": null, - "disable_output_devices": null, - "disable_parsers": null, - "disable_protocols": null, - "enable_bitstream_filters": null, - "enable_decoders": null, - "enable_demuxers": null, - "enable_encoders": null, - "enable_filters": null, - "enable_hardware_accelerators": null, - "enable_input_devices": null, - "enable_muxers": null, - "enable_output_devices": null, - "enable_parsers": null, - "enable_protocols": null, - "postproc": "True", - "shared": "False", - "swresample": "True", - "swscale": "True", - "with_asm": "True", - "with_bzip2": "True", - "with_freetype": "True", - "with_libaom": "True", - "with_libdav1d": "True", - "with_libfdk_aac": "True", - "with_libiconv": "True", - "with_libmp3lame": "True", - "with_libvpx": "True", - "with_libwebp": "True", - "with_libx264": "True", - "with_libx265": "True", - "with_lzma": "True", - "with_openh264": "True", - "with_openjpeg": "True", - "with_opus": "True", - "with_programs": "True", - "with_sdl": "False", - "with_ssl": "openssl", - "with_vorbis": "True", - "with_zeromq": "False", - "with_zlib": "True" - }, - "requires": [ - "xz_utils/5.4.Z", - "libiconv/1.17.Z", - "freetype/2.13.Z", - "libpng/1.6.Z", - "bzip2/1.0.Z", - "brotli/1.1.Z", - "openjpeg/2.5.Z", - "openh264/2.4.Z", - "vorbis/1.3.Z", - "ogg/1.3.Z", - "opus/1.4.Z", - "libx264/cci", - "libx265/3.4.Z", - "libvpx/1.14.Z", - "libmp3lame/3.100.Z", - "libfdk_aac/2.0.Z", - "libwebp/1.3.Z", - "openssl/3.3.Z", - "zlib/1.3.Z", - "libaom-av1/3.6.Z", - "dav1d/1.4.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "13": { - "ref": "xz_utils/5.4.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "21": { - "ref": "libiconv/1.17", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "23": { - "ref": "freetype/2.13.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "8": { - "ref": "libpng/1.6.44", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "20": { - "ref": "bzip2/1.0.8", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "24": { - "ref": "brotli/1.1.0", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "7": { - "ref": "openjpeg/2.5.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "30": { - "ref": "openh264/2.4.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "38": { - "ref": "vorbis/1.3.7", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "39": { - "ref": "ogg/1.3.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "40": { - "ref": "opus/1.4", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "41": { - "ref": "libx264/cci.20240224", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "45": { - "ref": "libx265/3.4", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "48": { - "ref": "libvpx/1.14.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "51": { - "ref": "libmp3lame/3.100", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "52": { - "ref": "libfdk_aac/2.0.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "16": { - "ref": "libwebp/1.3.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "53": { - "ref": "openssl/3.3.2", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "57": { - "ref": "libaom-av1/3.6.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "59": { - "ref": "dav1d/1.4.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "64": { - "ref": "yasm/1.3.0", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "65": { - "ref": "pkgconf/2.1.0", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "68": { - "ref": "msys2/cci.latest", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "20": { - "ref": "bzip2/1.0.8#d00dac990f08d991998d624be81a9526", - "id": "20", - "recipe": "Downloaded", - "package_id": "67bfcb7b4b78262b9d05495e479dcd92f747316b", - "prev": "e4aa22ae3a31782994f99b4be58625c9", - "rrev": "d00dac990f08d991998d624be81a9526", - "rrev_timestamp": 1724661266.998, - "prev_timestamp": 1724669283.426, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "bzip2", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "bzip2-1.0.8", - "author": null, - "description": "bzip2 is a free and open-source file compression program that uses the Burrows Wheeler algorithm.", - "homepage": "https://sourceware.org/bzip2", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "build_executable": true - }, - "options_description": null, - "version": "1.0.8", - "topics": [ - "data-compressor", - "file-compression" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "build_executable": "True", - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "build_executable": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\bzip22a75d000ecba1\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "bzip2/1.0.8", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "build_executable": "True", - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "21": { - "ref": "libiconv/1.17#73fefc1b696e069df90fd1d18aa63edd", - "id": "21", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "9ef92719f5c05dca2f0dbb46f50d3f8d", - "rrev": "73fefc1b696e069df90fd1d18aa63edd", - "rrev_timestamp": 1707122814.387, - "prev_timestamp": 1707124421.407, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libiconv", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "LGPL-2.1-or-later", - "author": null, - "description": "Convert text to and from Unicode", - "homepage": "https://www.gnu.org/software/libiconv/", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": true, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "1.17", - "topics": [ - "iconv", - "text", - "encoding", - "locale", - "unicode", - "conversion" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libic9912aaea08621\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libiconv/1.17", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "22": { - "ref": "msys2/cci.latest", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "22": { - "ref": "msys2/cci.latest#4927aa5502eb174e95df524f2be2685e", - "id": "22", - "recipe": "Downloaded", - "package_id": "956a88975bda9dfcc485e2861d71e74bd7e2b9a5", - "prev": "06ca1e71ba3ed86c0b2e116f4a63da61", - "rrev": "4927aa5502eb174e95df524f2be2685e", - "rrev_timestamp": 1732034252.89, - "prev_timestamp": 1732034681.324, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "msys2", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MSYS license", - "author": null, - "description": "MSYS2 is a software distro and building platform for Windows", - "homepage": "http://www.msys2.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "exclude_files": "*/link.exe", - "packages": "base-devel,binutils,gcc", - "additional_packages": null, - "no_kill": false - }, - "options_description": null, - "version": "cci.latest", - "topics": [ - "msys", - "unix", - "subsystem" - ], - "package_type": "unknown", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": { - "additional_packages": null, - "exclude_files": "*/link.exe", - "no_kill": "False", - "packages": "base-devel,binutils,gcc" - }, - "options_definitions": { - "exclude_files": [ - "ANY" - ], - "packages": [ - "ANY" - ], - "additional_packages": [ - null, - "ANY" - ], - "no_kill": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\msys2058ac8d7e56ba\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "msys2/cci.latest", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": { - "additional_packages": null, - "exclude_files": "*/link.exe", - "packages": "base-devel,binutils,gcc" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "23": { - "ref": "freetype/2.13.2#5d2563803c8558d4ef47271a82c73d20", - "id": "23", - "recipe": "Downloaded", - "package_id": "79f73b3fcb4ea3718b05e96b46594ae8f2ec3895", - "prev": "e9b07b14b986a38f75b0b42e3ea40f9e", - "rrev": "5d2563803c8558d4ef47271a82c73d20", - "rrev_timestamp": 1728736671.752, - "prev_timestamp": 1728737773.758, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "freetype", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "FTL", - "author": null, - "description": "FreeType is a freely available software library to render fonts.", - "homepage": "https://www.freetype.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "with_png": true, - "with_zlib": true, - "with_bzip2": true, - "with_brotli": true, - "subpixel": false - }, - "options_description": null, - "version": "2.13.2", - "topics": [ - "freetype", - "fonts" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False", - "subpixel": "False", - "with_brotli": "True", - "with_bzip2": "True", - "with_png": "True", - "with_zlib": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "with_png": [ - "True", - "False", - "ANY" - ], - "with_zlib": [ - "True", - "False", - "ANY" - ], - "with_bzip2": [ - "True", - "False", - "ANY" - ], - "with_brotli": [ - "True", - "False", - "ANY" - ], - "subpixel": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\freet21b8ad210d5f0\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "freetype/2.13.2", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False", - "subpixel": "False", - "with_brotli": "True", - "with_bzip2": "True", - "with_png": "True", - "with_zlib": "True" - }, - "requires": [ - "libpng/1.6.Z", - "zlib/1.3.Z", - "bzip2/1.0.Z", - "brotli/1.1.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "8": { - "ref": "libpng/1.6.44", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "20": { - "ref": "bzip2/1.0.8", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "24": { - "ref": "brotli/1.1.0", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "25": { - "ref": "meson/1.3.2", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "26": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "27": { - "ref": "pkgconf/2.1.0", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "24": { - "ref": "brotli/1.1.0#d56d7bb9ca722942aba17369cb5c0519", - "id": "24", - "recipe": "Downloaded", - "package_id": "75df3523cadfb3cb5a2c1cc2d61e8c640e1f9b96", - "prev": "249943a2756eb869cac284274651a4ab", - "rrev": "d56d7bb9ca722942aba17369cb5c0519", - "rrev_timestamp": 1696161049.808, - "prev_timestamp": 1696184730.92, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "brotli", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "MIT" - ], - "author": null, - "description": "Brotli compression format", - "homepage": "https://github.com/google/brotli", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "target_bits": null, - "endianness": null, - "enable_portable": false, - "enable_rbit": true, - "enable_debug": false, - "enable_log": false - }, - "options_description": null, - "version": "1.1.0", - "topics": [ - "brotli", - "compression" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "enable_debug": "False", - "enable_log": "False", - "enable_portable": "False", - "enable_rbit": "True", - "endianness": "None", - "shared": "False", - "target_bits": "None" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "target_bits": [ - "64", - "32", - null, - "ANY" - ], - "endianness": [ - "big", - "little", - "neutral", - null, - "ANY" - ], - "enable_portable": [ - "True", - "False", - "ANY" - ], - "enable_rbit": [ - "True", - "False", - "ANY" - ], - "enable_debug": [ - "True", - "False", - "ANY" - ], - "enable_log": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\brotl01cfbaf421d56\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "brotli/1.1.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "enable_debug": "False", - "enable_log": "False", - "enable_portable": "False", - "enable_rbit": "True", - "endianness": null, - "shared": "False", - "target_bits": null - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "25": { - "ref": "meson/1.3.2#26ce8a76a36cc275cdfee1d757bc6561", - "id": "25", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "3ba677cf44c95996f4f326c668f92f00", - "rrev": "26ce8a76a36cc275cdfee1d757bc6561", - "rrev_timestamp": 1726730118.251, - "prev_timestamp": 1726730535.071, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "meson", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "a project to create the best possible next-generation build system", - "homepage": "https://github.com/mesonbuild/meson", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.3.2", - "topics": [ - "mesonbuild", - "build-system" - ], - "package_type": "application", - "languages": [], - "settings": {}, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson441134a31840c\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "meson/1.3.2", - "info": {}, - "vendor": false, - "dependencies": { - "26": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - } - }, - "context": "build", - "test": false - }, - "26": { - "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", - "id": "26", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "360592e21b5a6812030b65cbdd1c4a8d", - "rrev": "fd583651bf0c6a901943495d49878803", - "rrev_timestamp": 1724079877.609, - "prev_timestamp": 1724080899.217, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "ninja", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Ninja is a small build system with a focus on speed", - "homepage": "https://github.com/ninja-build/ninja", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.12.1", - "topics": [ - "ninja", - "build" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ninja/1.12.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "27": { - "ref": "pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605", - "id": "27", - "recipe": "Downloaded", - "package_id": "43771b8671ac44479c188dd72670e2eb2d7918a6", - "prev": "302b4a47f55f982ddf140855abd5bf1f", - "rrev": "27f44583701117b571307cf5b5fe5605", - "rrev_timestamp": 1701537936.436, - "prev_timestamp": 1701539026.967, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "pkgconf", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "ISC", - "author": null, - "description": "package compiler and linker metadata toolkit", - "homepage": "https://git.sr.ht/~kaniini/pkgconf", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "enable_lib": false - }, - "options_description": null, - "version": "2.1.0", - "topics": [ - "build", - "configuration" - ], - "package_type": "unknown", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "enable_lib": "False" - }, - "options_definitions": { - "enable_lib": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\pkgco39164e4b4e12d\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "pkgconf/2.1.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - }, - "options": { - "enable_lib": "False" - } - }, - "vendor": false, - "dependencies": { - "28": { - "ref": "meson/1.2.2", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "29": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "build", - "test": false - }, - "28": { - "ref": "meson/1.2.2#21b73818ba96d9eea465b310b5bbc993", - "id": "28", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "97f4a23dd2d942f83e5344b1ca496ce7", - "rrev": "21b73818ba96d9eea465b310b5bbc993", - "rrev_timestamp": 1726730120.212, - "prev_timestamp": 1726730449.612, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "meson", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "a project to create the best possible next-generation build system", - "homepage": "https://github.com/mesonbuild/meson", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.2.2", - "topics": [ - "mesonbuild", - "build-system" - ], - "package_type": "application", - "languages": [], - "settings": {}, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson5558efeaf108c\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "meson/1.2.2", - "info": {}, - "vendor": false, - "dependencies": { - "29": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - } - }, - "context": "build", - "test": false - }, - "29": { - "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", - "id": "29", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "360592e21b5a6812030b65cbdd1c4a8d", - "rrev": "fd583651bf0c6a901943495d49878803", - "rrev_timestamp": 1724079877.609, - "prev_timestamp": 1724080899.217, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "ninja", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Ninja is a small build system with a focus on speed", - "homepage": "https://github.com/ninja-build/ninja", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.12.1", - "topics": [ - "ninja", - "build" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ninja/1.12.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "30": { - "ref": "openh264/2.4.1#e7b055ba4fc635a6a3e0dbec088e18ea", - "id": "30", - "recipe": "Downloaded", - "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", - "prev": "f8c0525811934c11c7d10be7452c74e8", - "rrev": "e7b055ba4fc635a6a3e0dbec088e18ea", - "rrev_timestamp": 1732788772.808, - "prev_timestamp": 1732789386.113, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "openh264", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "Open Source H.264 Codec", - "homepage": "http://www.openh264.org/", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "2.4.1", - "topics": [ - "h264", - "codec", - "video", - "compression" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\openhcc24af2c9216e\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "openh264/2.4.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "31": { - "ref": "meson/1.4.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "32": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "33": { - "ref": "pkgconf/2.2.0", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "36": { - "ref": "nasm/2.16.01", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "31": { - "ref": "meson/1.4.1#43b753adf9a089cadfa17c8034f5c897", - "id": "31", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "4a43a051838fc016591c956c0389e89e", - "rrev": "43b753adf9a089cadfa17c8034f5c897", - "rrev_timestamp": 1726730117.486, - "prev_timestamp": 1726730485.857, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "meson", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "a project to create the best possible next-generation build system", - "homepage": "https://github.com/mesonbuild/meson", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.4.1", - "topics": [ - "mesonbuild", - "build-system" - ], - "package_type": "application", - "languages": [], - "settings": {}, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson050f2398829b1\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "meson/1.4.1", - "info": {}, - "vendor": false, - "dependencies": { - "32": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - } - }, - "context": "build", - "test": false - }, - "32": { - "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", - "id": "32", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "360592e21b5a6812030b65cbdd1c4a8d", - "rrev": "fd583651bf0c6a901943495d49878803", - "rrev_timestamp": 1724079877.609, - "prev_timestamp": 1724080899.217, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "ninja", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Ninja is a small build system with a focus on speed", - "homepage": "https://github.com/ninja-build/ninja", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.12.1", - "topics": [ - "ninja", - "build" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ninja/1.12.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "33": { - "ref": "pkgconf/2.2.0#6462942a22803086372db44689ba825f", - "id": "33", - "recipe": "Downloaded", - "package_id": "43771b8671ac44479c188dd72670e2eb2d7918a6", - "prev": "7bf2c1dc194cbb493a2cce6721fb7c01", - "rrev": "6462942a22803086372db44689ba825f", - "rrev_timestamp": 1713364853.749, - "prev_timestamp": 1713802872.024, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "pkgconf", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "ISC", - "author": null, - "description": "package compiler and linker metadata toolkit", - "homepage": "https://git.sr.ht/~kaniini/pkgconf", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "enable_lib": false - }, - "options_description": null, - "version": "2.2.0", - "topics": [ - "build", - "configuration" - ], - "package_type": "unknown", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "enable_lib": "False" - }, - "options_definitions": { - "enable_lib": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\pkgcoff0cd8ef87b2e\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "pkgconf/2.2.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - }, - "options": { - "enable_lib": "False" - } - }, - "vendor": false, - "dependencies": { - "34": { - "ref": "meson/1.2.2", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "35": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "build", - "test": false - }, - "34": { - "ref": "meson/1.2.2#21b73818ba96d9eea465b310b5bbc993", - "id": "34", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "97f4a23dd2d942f83e5344b1ca496ce7", - "rrev": "21b73818ba96d9eea465b310b5bbc993", - "rrev_timestamp": 1726730120.212, - "prev_timestamp": 1726730449.612, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "meson", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "a project to create the best possible next-generation build system", - "homepage": "https://github.com/mesonbuild/meson", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.2.2", - "topics": [ - "mesonbuild", - "build-system" - ], - "package_type": "application", - "languages": [], - "settings": {}, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson5558efeaf108c\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "meson/1.2.2", - "info": {}, - "vendor": false, - "dependencies": { - "35": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - } - }, - "context": "build", - "test": false - }, - "35": { - "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", - "id": "35", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "360592e21b5a6812030b65cbdd1c4a8d", - "rrev": "fd583651bf0c6a901943495d49878803", - "rrev_timestamp": 1724079877.609, - "prev_timestamp": 1724080899.217, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "ninja", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Ninja is a small build system with a focus on speed", - "homepage": "https://github.com/ninja-build/ninja", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.12.1", - "topics": [ - "ninja", - "build" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ninja/1.12.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "36": { - "ref": "nasm/2.16.01#d0aebbd20ccbb6ad9c9c753ab708098c", - "id": "36", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "a32665446878fcea73ae881cc0cd7d41", - "rrev": "d0aebbd20ccbb6ad9c9c753ab708098c", - "rrev_timestamp": 1703986473.394, - "prev_timestamp": 1703989724.026, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "nasm", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", - "homepage": "http://www.nasm.us", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "2.16.01", - "topics": [ - "asm", - "installer", - "assembler" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmdd53aea891ec3\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "nasm/2.16.01", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": { - "37": { - "ref": "strawberryperl/5.32.1.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "build", - "test": false - }, - "37": { - "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", - "id": "37", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "a365b3810f698e2f0a00fbeece022903", - "rrev": "707032463aa0620fa17ec0d887f5fe41", - "rrev_timestamp": 1716912583.131, - "prev_timestamp": 1716913306.441, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "strawberryperl", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "Artistic-1.0", - "GPL-1.0" - ], - "author": null, - "description": "Strawberry Perl for Windows.", - "homepage": "http://strawberryperl.com", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "5.32.1.1", - "topics": [ - "perl", - "interpreter", - "windows" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "strawberryperl/5.32.1.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "38": { - "ref": "vorbis/1.3.7#37e58f52e59a6232199b34ef402714a6", - "id": "38", - "recipe": "Downloaded", - "package_id": "5716ed60be3e52a680aebcade966a2d4782db011", - "prev": "6bd7f8caee1c94c4eccf2f5b117619d1", - "rrev": "37e58f52e59a6232199b34ef402714a6", - "rrev_timestamp": 1699046045.52, - "prev_timestamp": 1699049257.661, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "vorbis", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "The VORBIS audio codec library", - "homepage": "https://xiph.org/vorbis/", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "1.3.7", - "topics": [ - "audio", - "codec" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\vorbi17ae576c72ece\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "vorbis/1.3.7", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "requires": [ - "ogg/1.3.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "39": { - "ref": "ogg/1.3.5", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": true, - "transitive_libs": true, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - } - }, - "context": "host", - "test": false - }, - "39": { - "ref": "ogg/1.3.5#062626875f5c8c59f069f76f148098ef", - "id": "39", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "e927a574838328774c00363480fd0711", - "rrev": "062626875f5c8c59f069f76f148098ef", - "rrev_timestamp": 1676030023.878, - "prev_timestamp": 1686986872.744, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "ogg", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "The OGG library", - "homepage": "https://github.com/xiph/ogg", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "1.3.5", - "topics": [ - "codec", - "audio", - "lossless" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ogg09f0a2947bfb4\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ogg/1.3.5", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "40": { - "ref": "opus/1.4#3c98a306d127dce1e74d58a0e2c850b5", - "id": "40", - "recipe": "Downloaded", - "package_id": "d1a5b9bcc299cdd33a65105d273acb7da6ab62cf", - "prev": "3f3d6291c3e8d5eb8353dadc8623c96a", - "rrev": "3c98a306d127dce1e74d58a0e2c850b5", - "rrev_timestamp": 1726141248.821, - "prev_timestamp": 1726142602.129, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "opus", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "Opus is a totally open, royalty-free, highly versatile audio codec.", - "homepage": "https://opus-codec.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "fixed_point": false, - "stack_protector": true - }, - "options_description": null, - "version": "1.4", - "topics": [ - "opus", - "audio", - "decoder", - "decoding", - "multimedia", - "sound" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "fixed_point": "False", - "shared": "False", - "stack_protector": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "fixed_point": [ - "True", - "False", - "ANY" - ], - "stack_protector": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\opus075424eea27be\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "opus/1.4", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "fixed_point": "False", - "shared": "False", - "stack_protector": "True" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "41": { - "ref": "libx264/cci.20240224#b59786f05910017eb25a661cc79d68a3", - "id": "41", - "recipe": "Downloaded", - "package_id": "16a6c7ac72b1099ac41fab8e283c4688d873d02c", - "prev": "25be6964c7b02480976174efd3ce0fd3", - "rrev": "b59786f05910017eb25a661cc79d68a3", - "rrev_timestamp": 1733303978.056, - "prev_timestamp": 1733304761.449, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libx264", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "GPL-2.0", - "author": null, - "description": "x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format", - "homepage": "https://www.videolan.org/developers/x264.html", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": true, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "bit_depth": "all", - "with_opencl": true, - "with_asm": true - }, - "options_description": null, - "version": "cci.20240224", - "topics": [ - "video", - "encoding" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "bit_depth": "all", - "shared": "False", - "with_asm": "True", - "with_opencl": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "bit_depth": [ - "8", - "10", - "all", - "ANY" - ], - "with_opencl": [ - "True", - "False", - "ANY" - ], - "with_asm": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libx2d4b12e0eb3288\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libx264/cci.20240224", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "bit_depth": "all", - "shared": "False", - "with_asm": "True", - "with_opencl": "True" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "42": { - "ref": "nasm/2.15.05", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "44": { - "ref": "msys2/cci.latest", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "42": { - "ref": "nasm/2.15.05#058c93b2214a49ca1cfe9f8f26205568", - "id": "42", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "d8ed631ad7024475859e1b94de1f123c", - "rrev": "058c93b2214a49ca1cfe9f8f26205568", - "rrev_timestamp": 1703550024.076, - "prev_timestamp": 1703550813.478, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "nasm", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", - "homepage": "http://www.nasm.us", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "2.15.05", - "topics": [ - "asm", - "installer", - "assembler" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmddc75946c8a7a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "nasm/2.15.05", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": { - "43": { - "ref": "strawberryperl/5.32.1.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "build", - "test": false - }, - "43": { - "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", - "id": "43", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "a365b3810f698e2f0a00fbeece022903", - "rrev": "707032463aa0620fa17ec0d887f5fe41", - "rrev_timestamp": 1716912583.131, - "prev_timestamp": 1716913306.441, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "strawberryperl", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "Artistic-1.0", - "GPL-1.0" - ], - "author": null, - "description": "Strawberry Perl for Windows.", - "homepage": "http://strawberryperl.com", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "5.32.1.1", - "topics": [ - "perl", - "interpreter", - "windows" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "strawberryperl/5.32.1.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "44": { - "ref": "msys2/cci.latest#4927aa5502eb174e95df524f2be2685e", - "id": "44", - "recipe": "Downloaded", - "package_id": "956a88975bda9dfcc485e2861d71e74bd7e2b9a5", - "prev": "06ca1e71ba3ed86c0b2e116f4a63da61", - "rrev": "4927aa5502eb174e95df524f2be2685e", - "rrev_timestamp": 1732034252.89, - "prev_timestamp": 1732034681.324, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "msys2", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MSYS license", - "author": null, - "description": "MSYS2 is a software distro and building platform for Windows", - "homepage": "http://www.msys2.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "exclude_files": "*/link.exe", - "packages": "base-devel,binutils,gcc", - "additional_packages": null, - "no_kill": false - }, - "options_description": null, - "version": "cci.latest", - "topics": [ - "msys", - "unix", - "subsystem" - ], - "package_type": "unknown", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": { - "additional_packages": null, - "exclude_files": "*/link.exe", - "no_kill": "False", - "packages": "base-devel,binutils,gcc" - }, - "options_definitions": { - "exclude_files": [ - "ANY" - ], - "packages": [ - "ANY" - ], - "additional_packages": [ - null, - "ANY" - ], - "no_kill": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\msys2058ac8d7e56ba\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "msys2/cci.latest", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": { - "additional_packages": null, - "exclude_files": "*/link.exe", - "packages": "base-devel,binutils,gcc" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "45": { - "ref": "libx265/3.4#719e50b2b2c3fd1b9133fea12da42c62", - "id": "45", - "recipe": "Downloaded", - "package_id": "51e0f530ce3b7ab1874d8a7d4d1db79c6980ad83", - "prev": "abe56a778a1f8cd63ed0b147ce906fdc", - "rrev": "719e50b2b2c3fd1b9133fea12da42c62", - "rrev_timestamp": 1721125806.318, - "prev_timestamp": 1721127954.05, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libx265", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "GPL-2.0-only", - "commercial" - ], - "author": null, - "description": "x265 is the leading H.265 / HEVC encoder software library", - "homepage": "https://www.videolan.org/developers/x265.html", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "assembly": true, - "bit_depth": 8, - "HDR10": false, - "SVG_HEVC_encoder": false, - "with_numa": false - }, - "options_description": null, - "version": "3.4", - "topics": [ - "x265", - "codec", - "video", - "H.265" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "HDR10": "False", - "SVG_HEVC_encoder": "False", - "assembly": "True", - "bit_depth": "8", - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "assembly": [ - "True", - "False", - "ANY" - ], - "bit_depth": [ - "8", - "10", - "12", - "ANY" - ], - "HDR10": [ - "True", - "False", - "ANY" - ], - "SVG_HEVC_encoder": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libx21c2521966d8c6\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libx265/3.4", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "HDR10": "False", - "SVG_HEVC_encoder": "False", - "assembly": "True", - "bit_depth": "8", - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "46": { - "ref": "nasm/2.15.05", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "46": { - "ref": "nasm/2.15.05#058c93b2214a49ca1cfe9f8f26205568", - "id": "46", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "d8ed631ad7024475859e1b94de1f123c", - "rrev": "058c93b2214a49ca1cfe9f8f26205568", - "rrev_timestamp": 1703550024.076, - "prev_timestamp": 1703550813.478, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "nasm", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", - "homepage": "http://www.nasm.us", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "2.15.05", - "topics": [ - "asm", - "installer", - "assembler" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmddc75946c8a7a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "nasm/2.15.05", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": { - "47": { - "ref": "strawberryperl/5.32.1.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "build", - "test": false - }, - "47": { - "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", - "id": "47", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "a365b3810f698e2f0a00fbeece022903", - "rrev": "707032463aa0620fa17ec0d887f5fe41", - "rrev_timestamp": 1716912583.131, - "prev_timestamp": 1716913306.441, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "strawberryperl", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "Artistic-1.0", - "GPL-1.0" - ], - "author": null, - "description": "Strawberry Perl for Windows.", - "homepage": "http://strawberryperl.com", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "5.32.1.1", - "topics": [ - "perl", - "interpreter", - "windows" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "strawberryperl/5.32.1.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "48": { - "ref": "libvpx/1.14.1#3b2a56aea1e29b9a8f7753030c620f38", - "id": "48", - "recipe": "Downloaded", - "package_id": "a41a3c9132f76c03420a0d58c94f179496b2c6c1", - "prev": "56d11bd1d6a77920094ff4777f9fff01", - "rrev": "3b2a56aea1e29b9a8f7753030c620f38", - "rrev_timestamp": 1723790838.997, - "prev_timestamp": 1723794775.836, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libvpx", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "WebM VP8/VP9 Codec SDK", - "homepage": "https://www.webmproject.org/code", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": true, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "mmx": true, - "sse": true, - "sse2": true, - "sse3": true, - "ssse3": true, - "sse4_1": true, - "avx": false, - "avx2": false, - "avx512": false - }, - "options_description": null, - "version": "1.14.1", - "topics": [ - "vpx", - "codec", - "web", - "VP8", - "VP9" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "avx": "False", - "avx2": "False", - "avx512": "False", - "mmx": "True", - "sse": "True", - "sse2": "True", - "sse3": "True", - "sse4_1": "True", - "ssse3": "True" - }, - "options_definitions": { - "mmx": [ - "True", - "False", - "ANY" - ], - "sse": [ - "True", - "False", - "ANY" - ], - "sse2": [ - "True", - "False", - "ANY" - ], - "sse3": [ - "True", - "False", - "ANY" - ], - "ssse3": [ - "True", - "False", - "ANY" - ], - "sse4_1": [ - "True", - "False", - "ANY" - ], - "avx": [ - "True", - "False", - "ANY" - ], - "avx2": [ - "True", - "False", - "ANY" - ], - "avx512": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libvp365896908f4e7\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libvpx/1.14.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "avx": "False", - "avx2": "False", - "avx512": "False", - "mmx": "True", - "sse": "True", - "sse2": "True", - "sse3": "True", - "sse4_1": "True", - "ssse3": "True" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "49": { - "ref": "yasm/1.3.0", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "50": { - "ref": "msys2/cci.latest", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "49": { - "ref": "yasm/1.3.0#fb800a15413dca19bfaef9e4b5d50694", - "id": "49", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "68bb37bc24509a0529e3363ecac8f9e3", - "rrev": "fb800a15413dca19bfaef9e4b5d50694", - "rrev_timestamp": 1676208399.011, - "prev_timestamp": 1677764295.993, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "yasm", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "Yasm is a complete rewrite of the NASM assembler under the 'new' BSD License", - "homepage": "https://github.com/yasm/yasm", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.3.0", - "topics": [ - "yasm", - "installer", - "assembler" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\yasmb78308884dd42\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "yasm/1.3.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "50": { - "ref": "msys2/cci.latest#4927aa5502eb174e95df524f2be2685e", - "id": "50", - "recipe": "Downloaded", - "package_id": "956a88975bda9dfcc485e2861d71e74bd7e2b9a5", - "prev": "06ca1e71ba3ed86c0b2e116f4a63da61", - "rrev": "4927aa5502eb174e95df524f2be2685e", - "rrev_timestamp": 1732034252.89, - "prev_timestamp": 1732034681.324, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "msys2", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MSYS license", - "author": null, - "description": "MSYS2 is a software distro and building platform for Windows", - "homepage": "http://www.msys2.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "exclude_files": "*/link.exe", - "packages": "base-devel,binutils,gcc", - "additional_packages": null, - "no_kill": false - }, - "options_description": null, - "version": "cci.latest", - "topics": [ - "msys", - "unix", - "subsystem" - ], - "package_type": "unknown", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": { - "additional_packages": null, - "exclude_files": "*/link.exe", - "no_kill": "False", - "packages": "base-devel,binutils,gcc" - }, - "options_definitions": { - "exclude_files": [ - "ANY" - ], - "packages": [ - "ANY" - ], - "additional_packages": [ - null, - "ANY" - ], - "no_kill": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\msys2058ac8d7e56ba\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "msys2/cci.latest", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": { - "additional_packages": null, - "exclude_files": "*/link.exe", - "packages": "base-devel,binutils,gcc" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "51": { - "ref": "libmp3lame/3.100#44b12d19316eb2b223d98d3e75dae438", - "id": "51", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "1f940ddf96019360898491726791f26a", - "rrev": "44b12d19316eb2b223d98d3e75dae438", - "rrev_timestamp": 1674992501.853, - "prev_timestamp": 1686986797.846, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libmp3lame", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "LGPL-2.0", - "author": null, - "description": "LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL.", - "homepage": "http://lame.sourceforge.net", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "3.100", - "topics": [ - "multimedia", - "audio", - "mp3", - "decoder", - "encoding", - "decoding" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libmpebf686a19587c\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libmp3lame/3.100", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "52": { - "ref": "libfdk_aac/2.0.3#0115f6598be7303e042684e3a846b12d", - "id": "52", - "recipe": "Downloaded", - "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", - "prev": "0ee032989f19d0f4ee55b994561e62df", - "rrev": "0115f6598be7303e042684e3a846b12d", - "rrev_timestamp": 1720774838.081, - "prev_timestamp": 1720777361.561, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libfdk_aac", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "https://github.com/mstorsjo/fdk-aac/blob/master/NOTICE", - "author": null, - "description": "A standalone library of the Fraunhofer FDK AAC code from Android", - "homepage": "https://sourceforge.net/projects/opencore-amr/", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "2.0.3", - "topics": [ - "multimedia", - "audio", - "fraunhofer", - "aac", - "decoder", - "encoding", - "decoding" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libfdf7a93698f6a52\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libfdk_aac/2.0.3", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "53": { - "ref": "openssl/3.3.2#9f9f130d58e7c13e76bb8a559f0a6a8b", - "id": "53", - "recipe": "Downloaded", - "package_id": "2bcf959ecd653496ee2aa793e11b67c013b3b876", - "prev": "10e0710d2ba88f9b075cf4a105e23cb5", - "rrev": "9f9f130d58e7c13e76bb8a559f0a6a8b", - "rrev_timestamp": 1726234629.657, - "prev_timestamp": 1726237838.06, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "openssl", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "A toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols", - "homepage": "https://github.com/openssl/openssl", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "enable_weak_ssl_ciphers": false, - "386": false, - "capieng_dialog": false, - "enable_capieng": false, - "enable_trace": false, - "no_aria": false, - "no_apps": false, - "no_autoload_config": false, - "no_asm": false, - "no_async": false, - "no_blake2": false, - "no_bf": false, - "no_camellia": false, - "no_chacha": false, - "no_cms": false, - "no_comp": false, - "no_ct": false, - "no_cast": false, - "no_deprecated": false, - "no_des": false, - "no_dgram": false, - "no_dh": false, - "no_dsa": false, - "no_dso": false, - "no_ec": false, - "no_ecdh": false, - "no_ecdsa": false, - "no_engine": false, - "no_filenames": false, - "no_fips": false, - "no_gost": false, - "no_idea": false, - "no_legacy": false, - "no_md2": true, - "no_md4": false, - "no_mdc2": false, - "no_module": false, - "no_ocsp": false, - "no_pinshared": false, - "no_rc2": false, - "no_rc4": false, - "no_rc5": false, - "no_rfc3779": false, - "no_rmd160": false, - "no_sm2": false, - "no_sm3": false, - "no_sm4": false, - "no_srp": false, - "no_srtp": false, - "no_sse2": false, - "no_ssl": false, - "no_stdio": false, - "no_seed": false, - "no_sock": false, - "no_ssl3": false, - "no_threads": false, - "no_tls1": false, - "no_ts": false, - "no_whirlpool": false, - "no_zlib": false, - "openssldir": null, - "tls_security_level": null - }, - "options_description": null, - "version": "3.3.2", - "topics": [ - "ssl", - "tls", - "encryption", - "security" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "386": "False", - "capieng_dialog": "False", - "enable_capieng": "False", - "enable_trace": "False", - "enable_weak_ssl_ciphers": "False", - "no_apps": "False", - "no_aria": "False", - "no_asm": "False", - "no_async": "False", - "no_autoload_config": "False", - "no_bf": "False", - "no_blake2": "False", - "no_camellia": "False", - "no_cast": "False", - "no_chacha": "False", - "no_cms": "False", - "no_comp": "False", - "no_ct": "False", - "no_deprecated": "False", - "no_des": "False", - "no_dgram": "False", - "no_dh": "False", - "no_dsa": "False", - "no_dso": "False", - "no_ec": "False", - "no_ecdh": "False", - "no_ecdsa": "False", - "no_engine": "False", - "no_filenames": "False", - "no_fips": "False", - "no_gost": "False", - "no_idea": "False", - "no_legacy": "False", - "no_md2": "True", - "no_md4": "False", - "no_mdc2": "False", - "no_module": "False", - "no_ocsp": "False", - "no_pinshared": "False", - "no_rc2": "False", - "no_rc4": "False", - "no_rc5": "False", - "no_rfc3779": "False", - "no_rmd160": "False", - "no_seed": "False", - "no_sm2": "False", - "no_sm3": "False", - "no_sm4": "False", - "no_sock": "False", - "no_srp": "False", - "no_srtp": "False", - "no_sse2": "False", - "no_ssl": "False", - "no_ssl3": "False", - "no_stdio": "False", - "no_threads": "False", - "no_tls1": "False", - "no_ts": "False", - "no_whirlpool": "False", - "no_zlib": "False", - "openssldir": "None", - "shared": "False", - "tls_security_level": "None" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "enable_weak_ssl_ciphers": [ - "True", - "False", - "ANY" - ], - "386": [ - "True", - "False", - "ANY" - ], - "capieng_dialog": [ - "True", - "False", - "ANY" - ], - "enable_capieng": [ - "True", - "False", - "ANY" - ], - "enable_trace": [ - "True", - "False", - "ANY" - ], - "no_aria": [ - "True", - "False", - "ANY" - ], - "no_apps": [ - "True", - "False", - "ANY" - ], - "no_autoload_config": [ - "True", - "False", - "ANY" - ], - "no_asm": [ - "True", - "False", - "ANY" - ], - "no_async": [ - "True", - "False", - "ANY" - ], - "no_blake2": [ - "True", - "False", - "ANY" - ], - "no_bf": [ - "True", - "False", - "ANY" - ], - "no_camellia": [ - "True", - "False", - "ANY" - ], - "no_chacha": [ - "True", - "False", - "ANY" - ], - "no_cms": [ - "True", - "False", - "ANY" - ], - "no_comp": [ - "True", - "False", - "ANY" - ], - "no_ct": [ - "True", - "False", - "ANY" - ], - "no_cast": [ - "True", - "False", - "ANY" - ], - "no_deprecated": [ - "True", - "False", - "ANY" - ], - "no_des": [ - "True", - "False", - "ANY" - ], - "no_dgram": [ - "True", - "False", - "ANY" - ], - "no_dh": [ - "True", - "False", - "ANY" - ], - "no_dsa": [ - "True", - "False", - "ANY" - ], - "no_dso": [ - "True", - "False", - "ANY" - ], - "no_ec": [ - "True", - "False", - "ANY" - ], - "no_ecdh": [ - "True", - "False", - "ANY" - ], - "no_ecdsa": [ - "True", - "False", - "ANY" - ], - "no_engine": [ - "True", - "False", - "ANY" - ], - "no_filenames": [ - "True", - "False", - "ANY" - ], - "no_fips": [ - "True", - "False", - "ANY" - ], - "no_gost": [ - "True", - "False", - "ANY" - ], - "no_idea": [ - "True", - "False", - "ANY" - ], - "no_legacy": [ - "True", - "False", - "ANY" - ], - "no_md2": [ - "True", - "False", - "ANY" - ], - "no_md4": [ - "True", - "False", - "ANY" - ], - "no_mdc2": [ - "True", - "False", - "ANY" - ], - "no_module": [ - "True", - "False", - "ANY" - ], - "no_ocsp": [ - "True", - "False", - "ANY" - ], - "no_pinshared": [ - "True", - "False", - "ANY" - ], - "no_rc2": [ - "True", - "False", - "ANY" - ], - "no_rc4": [ - "True", - "False", - "ANY" - ], - "no_rc5": [ - "True", - "False", - "ANY" - ], - "no_rfc3779": [ - "True", - "False", - "ANY" - ], - "no_rmd160": [ - "True", - "False", - "ANY" - ], - "no_sm2": [ - "True", - "False", - "ANY" - ], - "no_sm3": [ - "True", - "False", - "ANY" - ], - "no_sm4": [ - "True", - "False", - "ANY" - ], - "no_srp": [ - "True", - "False", - "ANY" - ], - "no_srtp": [ - "True", - "False", - "ANY" - ], - "no_sse2": [ - "True", - "False", - "ANY" - ], - "no_ssl": [ - "True", - "False", - "ANY" - ], - "no_stdio": [ - "True", - "False", - "ANY" - ], - "no_seed": [ - "True", - "False", - "ANY" - ], - "no_sock": [ - "True", - "False", - "ANY" - ], - "no_ssl3": [ - "True", - "False", - "ANY" - ], - "no_threads": [ - "True", - "False", - "ANY" - ], - "no_tls1": [ - "True", - "False", - "ANY" - ], - "no_ts": [ - "True", - "False", - "ANY" - ], - "no_whirlpool": [ - "True", - "False", - "ANY" - ], - "no_zlib": [ - "True", - "False", - "ANY" - ], - "openssldir": [ - null, - "ANY", - "ANY" - ], - "tls_security_level": [ - null, - "0", - "1", - "2", - "3", - "4", - "5", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\opens79b01551887bb\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "openssl/3.3.2", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "386": "False", - "capieng_dialog": "False", - "enable_capieng": "False", - "enable_trace": "False", - "enable_weak_ssl_ciphers": "False", - "no_apps": "False", - "no_aria": "False", - "no_asm": "False", - "no_async": "False", - "no_autoload_config": "False", - "no_bf": "False", - "no_blake2": "False", - "no_camellia": "False", - "no_cast": "False", - "no_chacha": "False", - "no_cms": "False", - "no_comp": "False", - "no_ct": "False", - "no_deprecated": "False", - "no_des": "False", - "no_dgram": "False", - "no_dh": "False", - "no_dsa": "False", - "no_dso": "False", - "no_ec": "False", - "no_ecdh": "False", - "no_ecdsa": "False", - "no_engine": "False", - "no_filenames": "False", - "no_fips": "False", - "no_gost": "False", - "no_idea": "False", - "no_legacy": "False", - "no_md2": "True", - "no_md4": "False", - "no_mdc2": "False", - "no_module": "False", - "no_ocsp": "False", - "no_pinshared": "False", - "no_rc2": "False", - "no_rc4": "False", - "no_rc5": "False", - "no_rfc3779": "False", - "no_rmd160": "False", - "no_seed": "False", - "no_sm2": "False", - "no_sm3": "False", - "no_sm4": "False", - "no_sock": "False", - "no_srp": "False", - "no_srtp": "False", - "no_sse2": "False", - "no_ssl": "False", - "no_ssl3": "False", - "no_stdio": "False", - "no_threads": "False", - "no_tls1": "False", - "no_ts": "False", - "no_whirlpool": "False", - "no_zlib": "False", - "openssldir": null, - "shared": "False", - "tls_security_level": null - }, - "requires": [ - "zlib/1.3.Z" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "2": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "54": { - "ref": "nasm/2.16.01", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "56": { - "ref": "strawberryperl/5.32.1.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "54": { - "ref": "nasm/2.16.01#d0aebbd20ccbb6ad9c9c753ab708098c", - "id": "54", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "a32665446878fcea73ae881cc0cd7d41", - "rrev": "d0aebbd20ccbb6ad9c9c753ab708098c", - "rrev_timestamp": 1703986473.394, - "prev_timestamp": 1703989724.026, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "nasm", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", - "homepage": "http://www.nasm.us", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "2.16.01", - "topics": [ - "asm", - "installer", - "assembler" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmdd53aea891ec3\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "nasm/2.16.01", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": { - "55": { - "ref": "strawberryperl/5.32.1.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "build", - "test": false - }, - "55": { - "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", - "id": "55", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "a365b3810f698e2f0a00fbeece022903", - "rrev": "707032463aa0620fa17ec0d887f5fe41", - "rrev_timestamp": 1716912583.131, - "prev_timestamp": 1716913306.441, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "strawberryperl", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "Artistic-1.0", - "GPL-1.0" - ], - "author": null, - "description": "Strawberry Perl for Windows.", - "homepage": "http://strawberryperl.com", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "5.32.1.1", - "topics": [ - "perl", - "interpreter", - "windows" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "strawberryperl/5.32.1.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "56": { - "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", - "id": "56", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "a365b3810f698e2f0a00fbeece022903", - "rrev": "707032463aa0620fa17ec0d887f5fe41", - "rrev_timestamp": 1716912583.131, - "prev_timestamp": 1716913306.441, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "strawberryperl", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "Artistic-1.0", - "GPL-1.0" - ], - "author": null, - "description": "Strawberry Perl for Windows.", - "homepage": "http://strawberryperl.com", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "5.32.1.1", - "topics": [ - "perl", - "interpreter", - "windows" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "strawberryperl/5.32.1.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "57": { - "ref": "libaom-av1/3.6.1#a2b22c70d6fce43887881431808ab8a6", - "id": "57", - "recipe": "Downloaded", - "package_id": "c2103b16a3c2427d7d8b2881830304dcd9a9594c", - "prev": "6899905bc3bbae2d12130390ecabda76", - "rrev": "a2b22c70d6fce43887881431808ab8a6", - "rrev_timestamp": 1722584909.89, - "prev_timestamp": 1722586196.869, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "libaom-av1", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "AV1 Codec Library", - "homepage": "https://aomedia.googlesource.com/aom", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "assembly": false - }, - "options_description": null, - "version": "3.6.1", - "topics": [ - "av1", - "codec", - "video", - "encoding", - "decoding" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "assembly": "False", - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "assembly": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\libaofd2a5e0327349\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "libaom-av1/3.6.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "assembly": "False", - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "58": { - "ref": "strawberryperl/5.32.1.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "58": { - "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", - "id": "58", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "a365b3810f698e2f0a00fbeece022903", - "rrev": "707032463aa0620fa17ec0d887f5fe41", - "rrev_timestamp": 1716912583.131, - "prev_timestamp": 1716913306.441, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "strawberryperl", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "Artistic-1.0", - "GPL-1.0" - ], - "author": null, - "description": "Strawberry Perl for Windows.", - "homepage": "http://strawberryperl.com", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "5.32.1.1", - "topics": [ - "perl", - "interpreter", - "windows" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "strawberryperl/5.32.1.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "59": { - "ref": "dav1d/1.4.3#5e2459e132c77183bd16d23d12fd8f4a", - "id": "59", - "recipe": "Downloaded", - "package_id": "678edc96b7a34895ba8e92b74ae489b339660c1c", - "prev": "7946cfb3637aebc8117472a570668b34", - "rrev": "5e2459e132c77183bd16d23d12fd8f4a", - "rrev_timestamp": 1720718852.932, - "prev_timestamp": 1720720255.436, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "dav1d", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "dav1d is a new AV1 cross-platform decoder, open-source, and focused on speed, size and correctness.", - "homepage": "https://www.videolan.org/projects/dav1d.html", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "bit_depth": "all", - "with_tools": true, - "assembly": true, - "with_avx512": "deprecated" - }, - "options_description": null, - "version": "1.4.3", - "topics": [ - "av1", - "codec", - "video", - "decoding" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "assembly": "True", - "bit_depth": "all", - "shared": "False", - "with_avx512": "deprecated", - "with_tools": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "bit_depth": [ - "all", - "8", - "16", - "ANY" - ], - "with_tools": [ - "True", - "False", - "ANY" - ], - "assembly": [ - "True", - "False", - "ANY" - ], - "with_avx512": [ - "deprecated", - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\dav1ded743e3fca1c6\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "dav1d/1.4.3", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "assembly": "True", - "bit_depth": "all", - "shared": "False", - "with_tools": "True" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "60": { - "ref": "meson/1.4.0", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "61": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "62": { - "ref": "nasm/2.16.01", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "60": { - "ref": "meson/1.4.0#2262941cc8fbb0099dd0c196ca2a6c01", - "id": "60", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "91b870cdcf4edb1a302a2ef7a0514791", - "rrev": "2262941cc8fbb0099dd0c196ca2a6c01", - "rrev_timestamp": 1726730116.631, - "prev_timestamp": 1726730448.155, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "meson", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "a project to create the best possible next-generation build system", - "homepage": "https://github.com/mesonbuild/meson", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.4.0", - "topics": [ - "mesonbuild", - "build-system" - ], - "package_type": "application", - "languages": [], - "settings": {}, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\mesonf6849a6fe4ba4\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "meson/1.4.0", - "info": {}, - "vendor": false, - "dependencies": { - "61": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - } - }, - "context": "build", - "test": false - }, - "61": { - "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", - "id": "61", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "360592e21b5a6812030b65cbdd1c4a8d", - "rrev": "fd583651bf0c6a901943495d49878803", - "rrev_timestamp": 1724079877.609, - "prev_timestamp": 1724080899.217, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "ninja", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Ninja is a small build system with a focus on speed", - "homepage": "https://github.com/ninja-build/ninja", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.12.1", - "topics": [ - "ninja", - "build" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ninja/1.12.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "62": { - "ref": "nasm/2.16.01#d0aebbd20ccbb6ad9c9c753ab708098c", - "id": "62", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "a32665446878fcea73ae881cc0cd7d41", - "rrev": "d0aebbd20ccbb6ad9c9c753ab708098c", - "rrev_timestamp": 1703986473.394, - "prev_timestamp": 1703989724.026, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "nasm", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler", - "homepage": "http://www.nasm.us", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "2.16.01", - "topics": [ - "asm", - "installer", - "assembler" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\nasmdd53aea891ec3\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "nasm/2.16.01", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": { - "63": { - "ref": "strawberryperl/5.32.1.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "build", - "test": false - }, - "63": { - "ref": "strawberryperl/5.32.1.1#707032463aa0620fa17ec0d887f5fe41", - "id": "63", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "a365b3810f698e2f0a00fbeece022903", - "rrev": "707032463aa0620fa17ec0d887f5fe41", - "rrev_timestamp": 1716912583.131, - "prev_timestamp": 1716913306.441, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "strawberryperl", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": [ - "Artistic-1.0", - "GPL-1.0" - ], - "author": null, - "description": "Strawberry Perl for Windows.", - "homepage": "http://strawberryperl.com", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "5.32.1.1", - "topics": [ - "perl", - "interpreter", - "windows" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\straw0ce3853788a29\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "strawberryperl/5.32.1.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "64": { - "ref": "yasm/1.3.0#fb800a15413dca19bfaef9e4b5d50694", - "id": "64", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "68bb37bc24509a0529e3363ecac8f9e3", - "rrev": "fb800a15413dca19bfaef9e4b5d50694", - "rrev_timestamp": 1676208399.011, - "prev_timestamp": 1677764295.993, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "yasm", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "Yasm is a complete rewrite of the NASM assembler under the 'new' BSD License", - "homepage": "https://github.com/yasm/yasm", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.3.0", - "topics": [ - "yasm", - "installer", - "assembler" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\yasmb78308884dd42\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "yasm/1.3.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "65": { - "ref": "pkgconf/2.1.0#27f44583701117b571307cf5b5fe5605", - "id": "65", - "recipe": "Downloaded", - "package_id": "43771b8671ac44479c188dd72670e2eb2d7918a6", - "prev": "302b4a47f55f982ddf140855abd5bf1f", - "rrev": "27f44583701117b571307cf5b5fe5605", - "rrev_timestamp": 1701537936.436, - "prev_timestamp": 1701539026.967, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "pkgconf", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "ISC", - "author": null, - "description": "package compiler and linker metadata toolkit", - "homepage": "https://git.sr.ht/~kaniini/pkgconf", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "enable_lib": false - }, - "options_description": null, - "version": "2.1.0", - "topics": [ - "build", - "configuration" - ], - "package_type": "unknown", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "enable_lib": "False" - }, - "options_definitions": { - "enable_lib": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\pkgco39164e4b4e12d\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "pkgconf/2.1.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - }, - "options": { - "enable_lib": "False" - } - }, - "vendor": false, - "dependencies": { - "66": { - "ref": "meson/1.2.2", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - }, - "67": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "build", - "test": false - }, - "66": { - "ref": "meson/1.2.2#21b73818ba96d9eea465b310b5bbc993", - "id": "66", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "97f4a23dd2d942f83e5344b1ca496ce7", - "rrev": "21b73818ba96d9eea465b310b5bbc993", - "rrev_timestamp": 1726730120.212, - "prev_timestamp": 1726730449.612, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "meson", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "a project to create the best possible next-generation build system", - "homepage": "https://github.com/mesonbuild/meson", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.2.2", - "topics": [ - "mesonbuild", - "build-system" - ], - "package_type": "application", - "languages": [], - "settings": {}, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\meson5558efeaf108c\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "meson/1.2.2", - "info": {}, - "vendor": false, - "dependencies": { - "67": { - "ref": "ninja/1.12.1", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": true - } - }, - "context": "build", - "test": false - }, - "67": { - "ref": "ninja/1.12.1#fd583651bf0c6a901943495d49878803", - "id": "67", - "recipe": "Downloaded", - "package_id": "723257509aee8a72faf021920c2874abc738e029", - "prev": "360592e21b5a6812030b65cbdd1c4a8d", - "rrev": "fd583651bf0c6a901943495d49878803", - "rrev_timestamp": 1724079877.609, - "prev_timestamp": 1724080899.217, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "ninja", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Ninja is a small build system with a focus on speed", - "homepage": "https://github.com/ninja-build/ninja", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "1.12.1", - "topics": [ - "ninja", - "build" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ninja5a60db2c3ec7a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ninja/1.12.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "build_type": "Release" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "68": { - "ref": "msys2/cci.latest#4927aa5502eb174e95df524f2be2685e", - "id": "68", - "recipe": "Downloaded", - "package_id": "956a88975bda9dfcc485e2861d71e74bd7e2b9a5", - "prev": "06ca1e71ba3ed86c0b2e116f4a63da61", - "rrev": "4927aa5502eb174e95df524f2be2685e", - "rrev_timestamp": 1732034252.89, - "prev_timestamp": 1732034681.324, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "msys2", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MSYS license", - "author": null, - "description": "MSYS2 is a software distro and building platform for Windows", - "homepage": "http://www.msys2.org", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "exclude_files": "*/link.exe", - "packages": "base-devel,binutils,gcc", - "additional_packages": null, - "no_kill": false - }, - "options_description": null, - "version": "cci.latest", - "topics": [ - "msys", - "unix", - "subsystem" - ], - "package_type": "unknown", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": { - "additional_packages": null, - "exclude_files": "*/link.exe", - "no_kill": "False", - "packages": "base-devel,binutils,gcc" - }, - "options_definitions": { - "exclude_files": [ - "ANY" - ], - "packages": [ - "ANY" - ], - "additional_packages": [ - null, - "ANY" - ], - "no_kill": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\msys2058ac8d7e56ba\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "msys2/cci.latest", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": { - "additional_packages": null, - "exclude_files": "*/link.exe", - "packages": "base-devel,binutils,gcc" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "69": { - "ref": "protobuf/3.21.12#d1ddaac72b361494fe277377dbfe94c7", - "id": "69", - "recipe": "Downloaded", - "package_id": "9a546d3c2c7b2b02ebec30698e8536173849d86f", - "prev": "8ff84e2093c206244b0b01fab5b9d4db", - "rrev": "d1ddaac72b361494fe277377dbfe94c7", - "rrev_timestamp": 1732221817.822, - "prev_timestamp": 1732281685.725, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "protobuf", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "Protocol Buffers - Google's data interchange format", - "homepage": "https://github.com/protocolbuffers/protobuf", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "with_zlib": true, - "with_rtti": true, - "lite": false, - "upb": false, - "debug_suffix": true - }, - "options_description": null, - "version": "3.21.12", - "topics": [ - "protocol-buffers", - "protocol-compiler", - "serialization", - "rpc", - "protocol-compiler" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "debug_suffix": "True", - "lite": "False", - "shared": "False", - "with_rtti": "True", - "with_zlib": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False" - ], - "with_zlib": [ - "True", - "False" - ], - "with_rtti": [ - "True", - "False" - ], - "lite": [ - "True", - "False" - ], - "debug_suffix": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\protoe97b0f2d4b3d3\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "protobuf/3.21.12", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "debug_suffix": "True", - "lite": "False", - "shared": "False", - "with_rtti": "True", - "with_zlib": "True" - }, - "requires": [ - "zlib/1.3.Z" - ] - }, - "vendor": false, - "dependencies": { - "70": { - "ref": "zlib/1.3.1", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - } - }, - "context": "build", - "test": false - }, - "70": { - "ref": "zlib/1.3.1#b8bc2603263cf7eccbd6e17e66b0ed76", - "id": "70", - "recipe": "Downloaded", - "package_id": "7bfde258ff4f62f75668d0896dbddedaa7480a0f", - "prev": "79ec8125ebd42591897da4cf270e6146", - "rrev": "b8bc2603263cf7eccbd6e17e66b0ed76", - "rrev_timestamp": 1733936244.862, - "prev_timestamp": 1733936492.457, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "zlib", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Zlib", - "author": null, - "description": "A Massively Spiffy Yet Delicately Unobtrusive Compression Library (Also Free, Not to Mention Unencumbered by Patents)", - "homepage": "https://zlib.net", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "1.3.1", - "topics": [ - "zlib", - "compression" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\zlib204752602052d\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "zlib/1.3.1", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "shared": "False" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - }, - "71": { - "ref": "tensorflow-lite/2.15.0#d1d39a062bf00a61166d46a4537527fb", - "id": "71", - "recipe": "Downloaded", - "package_id": "b524818cabf76a11fd1fd66a1e3377004a83aea4", - "prev": null, - "rrev": "d1d39a062bf00a61166d46a4537527fb", - "rrev_timestamp": 1724228962.993, - "prev_timestamp": null, - "remote": "conancenter", - "binary_remote": null, - "build_id": null, - "binary": "Invalid", - "invalid_build": false, - "info_invalid": "Current cppstd (14) is lower than the required C++ standard (17).", - "name": "tensorflow-lite", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "TensorFlow Lite is a set of tools that enables on-device machine learning by helping developers run their models on mobile, embedded, and IoT devices.", - "homepage": "https://www.tensorflow.org/lite/guide", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "with_ruy": false, - "with_nnapi": false, - "with_mmap": true, - "with_xnnpack": true - }, - "options_description": null, - "version": "2.15.0", - "topics": [ - "machine-learning", - "neural-networks", - "deep-learning" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "shared": "False", - "with_ruy": "False", - "with_xnnpack": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False" - ], - "with_ruy": [ - "True", - "False" - ], - "with_xnnpack": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\tenso25f02224b3fbc\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "tensorflow-lite/2.15.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "shared": "False", - "with_ruy": "False", - "with_xnnpack": "True" - }, - "requires": [ - "abseil/20230125.3.Z", - "eigen/3.4.0#2e192482a8acff96fe34766adca2b24c:da39a3ee5e6b4b0d3255bfef95601890afd80709", - "farmhash/cci", - "fft/cci", - "flatbuffers/23.5.Z", - "gemmlowp/cci", - "ruy/cci", - "intel-neon2sse/cci.20210225#56e8b51d756e9ae2a612e3489039e07b:da39a3ee5e6b4b0d3255bfef95601890afd80709", - "xnnpack/cci", - "cpuinfo/cci", - "pthreadpool/cci", - "fp16/cci.20210320#34dbac7f6fa3dee68830028b53de6c84:da39a3ee5e6b4b0d3255bfef95601890afd80709", - "psimd/cci.20200517#83200a06ebb1ff39c5adff0d712c05fa:da39a3ee5e6b4b0d3255bfef95601890afd80709", - "fxdiv/cci.20200417#0b3afe4c9d1b8d05f5f017984c8cb15a:da39a3ee5e6b4b0d3255bfef95601890afd80709" - ] - }, - "vendor": false, - "dependencies": { - "72": { - "ref": "abseil/20230125.3", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "3": { - "ref": "eigen/3.4.0", - "run": false, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - }, - "73": { - "ref": "farmhash/cci.20190513", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "74": { - "ref": "fft/cci.20061228", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "75": { - "ref": "flatbuffers/23.5.26", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": true, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "76": { - "ref": "gemmlowp/cci.20210928", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "77": { - "ref": "ruy/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "79": { - "ref": "intel-neon2sse/cci.20210225", - "run": false, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - }, - "80": { - "ref": "xnnpack/cci.20231026", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "78": { - "ref": "cpuinfo/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": "minor_mode", - "visible": true - }, - "83": { - "ref": "pthreadpool/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "81": { - "ref": "fp16/cci.20210320", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - }, - "82": { - "ref": "psimd/cci.20200517", - "run": false, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - }, - "84": { - "ref": "fxdiv/cci.20200417", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - }, - "85": { - "ref": "cmake/3.31.0", - "run": true, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": true, - "transitive_headers": null, - "transitive_libs": null, - "headers": false, - "package_id_mode": null, - "visible": false - } - }, - "context": "host", - "test": false - }, - "72": { - "ref": "abseil/20230125.3#1ba26940c6122d297346a01e0028d32d", - "id": "72", - "recipe": "Downloaded", - "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", - "prev": "88b1a34016147974731360589ba3f204", - "rrev": "1ba26940c6122d297346a01e0028d32d", - "rrev_timestamp": 1733486509.985, - "prev_timestamp": 1733487365.53, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "abseil", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Abseil Common Libraries (C++) from Google", - "homepage": "https://github.com/abseil/abseil-cpp", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "20230125.3", - "topics": [ - "algorithm", - "container", - "google", - "common", - "utility" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\abseif3110286ac75a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "abseil/20230125.3", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "73": { - "ref": "farmhash/cci.20190513#af6593f545dd2b496e6bd019f1deb66f", - "id": "73", - "recipe": "Downloaded", - "package_id": "9ce1eea680350959f3943df5f4b0ad6aa2bf9c94", - "prev": "f5a602937535bf1b46d9dfd3a266abba", - "rrev": "af6593f545dd2b496e6bd019f1deb66f", - "rrev_timestamp": 1676156947.749, - "prev_timestamp": 1727617305.281, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "farmhash", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MIT", - "author": null, - "description": "A family of hash functions", - "homepage": "https://github.com/google/farmhash", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "no_builtin_expect": false - }, - "options_description": null, - "version": "cci.20190513", - "topics": [ - "hash", - "google", - "family" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "no_builtin_expect": "False", - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "no_builtin_expect": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\farmh17b7ad0e9ec70\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "farmhash/cci.20190513", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "no_builtin_expect": "False", - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "74": { - "ref": "fft/cci.20061228#76a056c8ad3656ad557071c230f0f50c", - "id": "74", - "recipe": "Downloaded", - "package_id": "cba07622b406f0e7dcc49eee4d3efb9623d2391c", - "prev": "cce0e24a7893abb7923ec7eb343d8e78", - "rrev": "76a056c8ad3656ad557071c230f0f50c", - "rrev_timestamp": 1676213461.547, - "prev_timestamp": 1686990183.511, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "fft", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "LicenseRef-LICENSE", - "author": null, - "description": "This is a package to calculate Discrete Fourier/Cosine/Sine Transforms of 2,3-dimensional sequences of length 2^N.", - "homepage": "http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "threads": false, - "max_threads": 4, - "threads_begin_n": 65536 - }, - "options_description": null, - "version": "cci.20061228", - "topics": [ - "fft2d", - "fft3d", - "dct", - "dst", - "dft" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False", - "threads": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "threads": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\fft699acb0b4437a\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "fft/cci.20061228", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False", - "threads": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "75": { - "ref": "flatbuffers/23.5.26#606a38635994b68e946db3207b0159d7", - "id": "75", - "recipe": "Downloaded", - "package_id": "3868ecb287285bab8d1e934b9cc00fe8474404d4", - "prev": "085b99e3eae96a76fed876124cd6496d", - "rrev": "606a38635994b68e946db3207b0159d7", - "rrev_timestamp": 1731000287.235, - "prev_timestamp": 1731002505.564, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "flatbuffers", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Memory Efficient Serialization Library", - "homepage": "http://google.github.io/flatbuffers", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "header_only": false - }, - "options_description": null, - "version": "23.5.26", - "topics": [ - "serialization", - "rpc", - "json-parser" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "header_only": "False", - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "header_only": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\flatb3f38473b01a92\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "flatbuffers/23.5.26", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "header_only": "False", - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "76": { - "ref": "gemmlowp/cci.20210928#28483fa833aa47549961bb9c5ab84bfa", - "id": "76", - "recipe": "Downloaded", - "package_id": "9bdee485ef71c14ac5f8a657202632bdb8b4482b", - "prev": "a0862c33ddc1d7a849fdb803f03336cb", - "rrev": "28483fa833aa47549961bb9c5ab84bfa", - "rrev_timestamp": 1676224257.989, - "prev_timestamp": 1727617647.021, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "gemmlowp", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "Low-precision matrix multiplication", - "homepage": "https://github.com/google/gemmlowp", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "cci.20210928", - "topics": [ - "gemm", - "matrix" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\gemml5e3f959eac300\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "gemmlowp/cci.20210928", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "77": { - "ref": "ruy/cci.20231129#f23bfbab527048bfffba001f7a81236d", - "id": "77", - "recipe": "Downloaded", - "package_id": "2e4c696053d4ca1cfc8f2fd51f9448865b3de5b2", - "prev": "b04af49d8ad1af034d276fb26d8a16f3", - "rrev": "f23bfbab527048bfffba001f7a81236d", - "rrev_timestamp": 1702571818.886, - "prev_timestamp": 1727617731.614, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "ruy", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "Apache-2.0", - "author": null, - "description": "ruy is a matrix multiplication library.\nIts focus is to cover the matrix multiplication needs of neural network inference engines\n", - "homepage": "https://github.com/google/ruy", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true - }, - "options_description": null, - "version": "cci.20231129", - "topics": [ - "matrix", - "multiplication", - "neural", - "network", - "AI", - "tensorflow" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\ruycf35cae579f80\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "ruy/cci.20231129", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False" - }, - "requires": [ - "cpuinfo/cci" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.cppstd", - "14" - ], - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "78": { - "ref": "cpuinfo/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - } - }, - "context": "host", - "test": false - }, - "78": { - "ref": "cpuinfo/cci.20231129#15e94782b128bee8bfd047f6102a4d21", - "id": "78", - "recipe": "Downloaded", - "package_id": "55aeaf508eba1e9553e073e30c7d81e0b42040a4", - "prev": "9ebda280b5777286dcc43ed3a2ff86fa", - "rrev": "15e94782b128bee8bfd047f6102a4d21", - "rrev_timestamp": 1716817358.974, - "prev_timestamp": 1716818328.825, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "cpuinfo", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "cpuinfo is a library to detect essential for performance optimization information about host CPU.", - "homepage": "https://github.com/pytorch/cpuinfo", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "log_level": "default" - }, - "options_description": null, - "version": "cci.20231129", - "topics": [ - "cpu", - "cpuid", - "cpu-cache", - "cpu-model", - "instruction-set", - "cpu-topology" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "log_level": "default" - }, - "options_definitions": { - "log_level": [ - "default", - "debug", - "info", - "warning", - "error", - "fatal", - "none", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\cpuin3f959f8542df3\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "cpuinfo/cci.20231129", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "log_level": "default" - }, - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "79": { - "ref": "intel-neon2sse/cci.20210225#56e8b51d756e9ae2a612e3489039e07b", - "id": "79", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "e86e987114e7f78601bcb5230eec9ca7", - "rrev": "56e8b51d756e9ae2a612e3489039e07b", - "rrev_timestamp": 1701333748.561, - "prev_timestamp": 1701335166.702, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "intel-neon2sse", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "Header only library intended to simplify ARM->IA32 porting", - "homepage": "https://github.com/intel/ARM_NEON_2_x86_SSE", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "SSE4": false, - "disable_performance_warnings": false - }, - "options_description": null, - "version": "cci.20210225", - "topics": [ - "neon", - "sse", - "port", - "translation", - "intrinsics" - ], - "package_type": "header-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": { - "SSE4": "False", - "disable_performance_warnings": "False" - }, - "options_definitions": { - "SSE4": [ - "True", - "False" - ], - "disable_performance_warnings": [ - "True", - "False" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\intel2f85873cf029e\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "intel-neon2sse/cci.20210225", - "info": {}, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "80": { - "ref": "xnnpack/cci.20231026#7485b0bd0fddb0c09ed1658846c84797", - "id": "80", - "recipe": "Downloaded", - "package_id": "5b9e1b332e1031652e37fe80978962335351834d", - "prev": "bec1f8320108e9000e0b894b471b4348", - "rrev": "7485b0bd0fddb0c09ed1658846c84797", - "rrev_timestamp": 1709310561.618, - "prev_timestamp": 1727618477.668, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "xnnpack", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "XNNPACK is a highly optimized library of floating-point neural network inference operators for ARM, WebAssembly, and x86 platforms.", - "homepage": "https://github.com/google/XNNPACK", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "assembly": true, - "memopt": true, - "sparse": true - }, - "options_description": null, - "version": "cci.20231026", - "topics": [ - "neural-network", - "inference", - "multithreading", - "inference-optimization", - "matrix-multiplication", - "simd" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "assembly": "True", - "memopt": "True", - "shared": "False", - "sparse": "True" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "assembly": [ - "True", - "False", - "ANY" - ], - "memopt": [ - "True", - "False", - "ANY" - ], - "sparse": [ - "True", - "False", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\xnnpa77e05ecaeffe0\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "xnnpack/cci.20231026", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "assembly": "True", - "memopt": "True", - "shared": "False", - "sparse": "True" - }, - "requires": [ - "cpuinfo/cci", - "fp16/cci.20210320#34dbac7f6fa3dee68830028b53de6c84:da39a3ee5e6b4b0d3255bfef95601890afd80709", - "psimd/cci.20200517#83200a06ebb1ff39c5adff0d712c05fa:da39a3ee5e6b4b0d3255bfef95601890afd80709", - "pthreadpool/cci", - "fxdiv/cci.20200417#0b3afe4c9d1b8d05f5f017984c8cb15a:da39a3ee5e6b4b0d3255bfef95601890afd80709" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "78": { - "ref": "cpuinfo/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "81": { - "ref": "fp16/cci.20210320", - "run": false, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - }, - "82": { - "ref": "psimd/cci.20200517", - "run": false, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": false, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - }, - "83": { - "ref": "pthreadpool/cci.20231129", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": true, - "transitive_libs": null, - "headers": true, - "package_id_mode": "minor_mode", - "visible": true - }, - "84": { - "ref": "fxdiv/cci.20200417", - "run": false, - "libs": true, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": true, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - } - }, - "context": "host", - "test": false - }, - "81": { - "ref": "fp16/cci.20210320#34dbac7f6fa3dee68830028b53de6c84", - "id": "81", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "b7ab18bd2ee17d82530f93d190f36156", - "rrev": "34dbac7f6fa3dee68830028b53de6c84", - "rrev_timestamp": 1700638970.182, - "prev_timestamp": 1700639178.776, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "fp16", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MIT", - "author": null, - "description": "Conversion to/from half-precision floating point formats.", - "homepage": "https://github.com/Maratyszcza/FP16", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "cci.20210320", - "topics": [ - "half-precision-floating-point" - ], - "package_type": "header-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\fp166310248a73f77\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "fp16/cci.20210320", - "info": {}, - "vendor": false, - "dependencies": { - "82": { - "ref": "psimd/cci.20200517", - "run": false, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": true, - "transitive_libs": true, - "headers": true, - "package_id_mode": "unrelated_mode", - "visible": true - } - }, - "context": "host", - "test": false - }, - "82": { - "ref": "psimd/cci.20200517#83200a06ebb1ff39c5adff0d712c05fa", - "id": "82", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "d8c3d8d76275b4c8abf8ee833e49cae5", - "rrev": "83200a06ebb1ff39c5adff0d712c05fa", - "rrev_timestamp": 1700638971.11, - "prev_timestamp": 1700639159.34, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "psimd", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MIT", - "author": null, - "description": "Portable 128-bit SIMD intrinsics.", - "homepage": "https://github.com/Maratyszcza/psimd", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "cci.20200517", - "topics": [ - "psimd", - "simd" - ], - "package_type": "header-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\psimd203083dab5b97\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "psimd/cci.20200517", - "info": {}, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "83": { - "ref": "pthreadpool/cci.20231129#c721f98463f06cc5bf835df5d6fd9843", - "id": "83", - "recipe": "Downloaded", - "package_id": "5dffbda7dde87bf0cbe360aaf0bad20021309f73", - "prev": "8292cf64b3e37d67264a9ca0f7414301", - "rrev": "c721f98463f06cc5bf835df5d6fd9843", - "rrev_timestamp": 1702580771.579, - "prev_timestamp": 1702668579.731, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Download", - "invalid_build": false, - "info_invalid": null, - "name": "pthreadpool", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-2-Clause", - "author": null, - "description": "pthreadpool is a portable and efficient thread pool implementation. It provides similar functionality to #pragma omp parallel for, but with additional features.", - "homepage": "https://github.com/Maratyszcza/pthreadpool", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": { - "shared": false, - "fPIC": true, - "sync_primitive": "default" - }, - "options_description": null, - "version": "cci.20231129", - "topics": [ - "multi-threading", - "pthreads", - "multi-core", - "threadpool" - ], - "package_type": "static-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False", - "sync_primitive": "default" - }, - "options_definitions": { - "shared": [ - "True", - "False", - "ANY" - ], - "sync_primitive": [ - "default", - "condvar", - "futex", - "gcd", - "event", - "ANY" - ] - }, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\pthre138c0e967a5df\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "pthreadpool/cci.20231129", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "193", - "build_type": "Release" - }, - "options": { - "shared": "False", - "sync_primitive": "default" - }, - "requires": [ - "fxdiv/cci.20200417#0b3afe4c9d1b8d05f5f017984c8cb15a:da39a3ee5e6b4b0d3255bfef95601890afd80709" - ], - "compatibility_delta": { - "settings": [ - [ - "compiler.version", - "193" - ] - ] - } - }, - "vendor": false, - "dependencies": { - "84": { - "ref": "fxdiv/cci.20200417", - "run": false, - "libs": false, - "skip": false, - "test": false, - "force": false, - "direct": true, - "build": false, - "transitive_headers": null, - "transitive_libs": null, - "headers": true, - "package_id_mode": "full_mode", - "visible": true - } - }, - "context": "host", - "test": false - }, - "84": { - "ref": "fxdiv/cci.20200417#0b3afe4c9d1b8d05f5f017984c8cb15a", - "id": "84", - "recipe": "Downloaded", - "package_id": "da39a3ee5e6b4b0d3255bfef95601890afd80709", - "prev": "99822879bdd86a69aa08623a42893b48", - "rrev": "0b3afe4c9d1b8d05f5f017984c8cb15a", - "rrev_timestamp": 1678543821.122, - "prev_timestamp": 1678545773.636, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "fxdiv", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "MIT", - "author": null, - "description": "C99/C++ header-only library for division via fixed-point multiplication by inverse.", - "homepage": "https://github.com/Maratyszcza/FXdiv", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "cci.20200417", - "topics": [ - "integer-division" - ], - "package_type": "header-library", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64", - "compiler": "msvc", - "compiler.cppstd": "14", - "compiler.runtime": "dynamic", - "compiler.runtime_type": "Release", - "compiler.version": "194", - "build_type": "Release" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\fxdiv788fa919ccc7d\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "fxdiv/cci.20200417", - "info": {}, - "vendor": false, - "dependencies": {}, - "context": "host", - "test": false - }, - "85": { - "ref": "cmake/3.31.0#ba7dbf3b2fc9e70653b4c0fb5bbd2483", - "id": "85", - "recipe": "Downloaded", - "package_id": "522dcea5982a3f8a5b624c16477e47195da2f84f", - "prev": "0d3590c43637cae952cc4bad766ca336", - "rrev": "ba7dbf3b2fc9e70653b4c0fb5bbd2483", - "rrev_timestamp": 1731316134.743, - "prev_timestamp": 1731316345.308, - "remote": "conancenter", - "binary_remote": "conancenter", - "build_id": null, - "binary": "Skip", - "invalid_build": false, - "info_invalid": null, - "name": "cmake", - "user": null, - "channel": null, - "url": "https://github.com/conan-io/conan-center-index", - "license": "BSD-3-Clause", - "author": null, - "description": "CMake, the cross-platform, open-source build system.", - "homepage": "https://github.com/Kitware/CMake", - "build_policy": null, - "upload_policy": null, - "revision_mode": "hash", - "provides": null, - "deprecated": null, - "win_bash": null, - "win_bash_run": null, - "default_options": null, - "options_description": null, - "version": "3.31.0", - "topics": [ - "build", - "installer" - ], - "package_type": "application", - "languages": [], - "settings": { - "os": "Windows", - "arch": "x86_64" - }, - "options": {}, - "options_definitions": {}, - "generators": [], - "python_requires": null, - "system_requires": {}, - "recipe_folder": "C:\\Users\\Diego\\.conan2\\p\\cmake2b5bd88ef96af\\e", - "source_folder": null, - "build_folder": null, - "generators_folder": null, - "package_folder": null, - "immutable_package_folder": null, - "cpp_info": { - "root": { - "includedirs": [ - "include" - ], - "srcdirs": null, - "libdirs": [ - "lib" - ], - "resdirs": null, - "bindirs": [ - "bin" - ], - "builddirs": null, - "frameworkdirs": null, - "system_libs": null, - "frameworks": null, - "libs": null, - "defines": null, - "cflags": null, - "cxxflags": null, - "sharedlinkflags": null, - "exelinkflags": null, - "objects": null, - "sysroot": null, - "requires": null, - "properties": null, - "exe": null, - "type": null, - "location": null, - "link_location": null, - "languages": null - } - }, - "conf_info": {}, - "label": "cmake/3.31.0", - "info": { - "settings": { - "os": "Windows", - "arch": "x86_64" - } - }, - "vendor": false, - "dependencies": {}, - "context": "build", - "test": false - } - }, - "root": { - "0": "None" - }, - "overrides": {}, - "resolved_ranges": { - "opencv/[*]": "opencv/4.10.0", - "zlib/[>=1.2.11 <2]": "zlib/1.3.1", - "libpng/[>=1.6 <2]": "libpng/1.6.44", - "xz_utils/[>=5.4.5 <6]": "xz_utils/5.4.5", - "cmake/[>=3.18 <4]": "cmake/3.31.0", - "ninja/[>=1.10.2 <2]": "ninja/1.12.1", - "pkgconf/[>=2.2 <3]": "pkgconf/2.2.0", - "openssl/[>=1.1 <4]": "openssl/3.3.2", - "tensorflow-lite/[*]": "tensorflow-lite/2.15.0", - "cmake/[>=3.16 <4]": "cmake/3.31.0" - }, - "replaced_requires": {}, - "error": null - } -}