├── .gitignore ├── INSTALL.md ├── README.md ├── assets ├── 2dhoi.png ├── 2dhoivid.gif ├── 4dhoi.gif ├── 4dhoi_incam.gif ├── canny.png ├── render.png └── teaser.png ├── constants ├── coco_thing_classes.json ├── config.py ├── datasets.py ├── david.py ├── lvis_thing_classes.json ├── metadata.py ├── segmentation.py ├── videos.py └── visualizers.py ├── imports ├── DPVO │ ├── .gitignore │ ├── .gitmodules │ ├── DBoW2 │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── demo │ │ │ ├── demo.cpp │ │ │ └── images │ │ │ │ ├── image0.png │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ └── image3.png │ │ ├── include │ │ │ └── DBoW2 │ │ │ │ ├── BowVector.h │ │ │ │ ├── DBoW2.h │ │ │ │ ├── FBrief.h │ │ │ │ ├── FClass.h │ │ │ │ ├── FORB.h │ │ │ │ ├── FSurf64.h │ │ │ │ ├── FeatureVector.h │ │ │ │ ├── QueryResults.h │ │ │ │ ├── ScoringObject.h │ │ │ │ ├── TemplatedDatabase.h │ │ │ │ └── TemplatedVocabulary.h │ │ ├── package.xml │ │ └── src │ │ │ ├── BowVector.cpp │ │ │ ├── DBoW2.cmake.in │ │ │ ├── FBrief.cpp │ │ │ ├── FORB.cpp │ │ │ ├── FSurf64.cpp │ │ │ ├── FeatureVector.cpp │ │ │ ├── QueryResults.cpp │ │ │ └── ScoringObject.cpp │ ├── DPRetrieval │ │ ├── CMakeLists.txt │ │ ├── pybind11 │ │ │ ├── .appveyor.yml │ │ │ ├── .clang-format │ │ │ ├── .clang-tidy │ │ │ ├── .cmake-format.yaml │ │ │ ├── .github │ │ │ │ ├── CODEOWNERS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug-report.yml │ │ │ │ │ └── config.yml │ │ │ │ ├── dependabot.yml │ │ │ │ ├── labeler.yml │ │ │ │ ├── labeler_merged.yml │ │ │ │ ├── pull_request_template.md │ │ │ │ └── workflows │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── configure.yml │ │ │ │ │ ├── format.yml │ │ │ │ │ ├── labeler.yml │ │ │ │ │ ├── pip.yml │ │ │ │ │ └── upstream.yml │ │ │ ├── .gitignore │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .readthedocs.yml │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── docs │ │ │ │ ├── Doxyfile │ │ │ │ ├── _static │ │ │ │ │ └── theme_overrides.css │ │ │ │ ├── advanced │ │ │ │ │ ├── cast │ │ │ │ │ │ ├── chrono.rst │ │ │ │ │ │ ├── custom.rst │ │ │ │ │ │ ├── eigen.rst │ │ │ │ │ │ ├── functional.rst │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── overview.rst │ │ │ │ │ │ ├── stl.rst │ │ │ │ │ │ └── strings.rst │ │ │ │ │ ├── classes.rst │ │ │ │ │ ├── embedding.rst │ │ │ │ │ ├── exceptions.rst │ │ │ │ │ ├── functions.rst │ │ │ │ │ ├── misc.rst │ │ │ │ │ ├── pycpp │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── numpy.rst │ │ │ │ │ │ ├── object.rst │ │ │ │ │ │ └── utilities.rst │ │ │ │ │ └── smart_ptrs.rst │ │ │ │ ├── basics.rst │ │ │ │ ├── benchmark.py │ │ │ │ ├── benchmark.rst │ │ │ │ ├── changelog.rst │ │ │ │ ├── classes.rst │ │ │ │ ├── cmake │ │ │ │ │ └── index.rst │ │ │ │ ├── compiling.rst │ │ │ │ ├── conf.py │ │ │ │ ├── faq.rst │ │ │ │ ├── index.rst │ │ │ │ ├── installing.rst │ │ │ │ ├── limitations.rst │ │ │ │ ├── pybind11-logo.png │ │ │ │ ├── pybind11_vs_boost_python1.png │ │ │ │ ├── pybind11_vs_boost_python1.svg │ │ │ │ ├── pybind11_vs_boost_python2.png │ │ │ │ ├── pybind11_vs_boost_python2.svg │ │ │ │ ├── reference.rst │ │ │ │ ├── release.rst │ │ │ │ ├── requirements.txt │ │ │ │ └── upgrade.rst │ │ │ ├── include │ │ │ │ └── pybind11 │ │ │ │ │ ├── attr.h │ │ │ │ │ ├── buffer_info.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── chrono.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── complex.h │ │ │ │ │ ├── detail │ │ │ │ │ ├── class.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── descr.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── internals.h │ │ │ │ │ ├── type_caster_base.h │ │ │ │ │ └── typeid.h │ │ │ │ │ ├── eigen.h │ │ │ │ │ ├── embed.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── functional.h │ │ │ │ │ ├── gil.h │ │ │ │ │ ├── iostream.h │ │ │ │ │ ├── numpy.h │ │ │ │ │ ├── operators.h │ │ │ │ │ ├── options.h │ │ │ │ │ ├── pybind11.h │ │ │ │ │ ├── pytypes.h │ │ │ │ │ ├── stl.h │ │ │ │ │ ├── stl │ │ │ │ │ └── filesystem.h │ │ │ │ │ └── stl_bind.h │ │ │ ├── noxfile.py │ │ │ ├── pybind11 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _version.py │ │ │ │ ├── _version.pyi │ │ │ │ ├── commands.py │ │ │ │ ├── py.typed │ │ │ │ ├── setup_helpers.py │ │ │ │ └── setup_helpers.pyi │ │ │ ├── pyproject.toml │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── tools │ │ │ │ ├── FindCatch.cmake │ │ │ │ ├── FindEigen3.cmake │ │ │ │ ├── FindPythonLibsNew.cmake │ │ │ │ ├── check-style.sh │ │ │ │ ├── cmake_uninstall.cmake.in │ │ │ │ ├── libsize.py │ │ │ │ ├── make_changelog.py │ │ │ │ ├── pybind11Common.cmake │ │ │ │ ├── pybind11Config.cmake.in │ │ │ │ ├── pybind11NewTools.cmake │ │ │ │ ├── pybind11Tools.cmake │ │ │ │ ├── pyproject.toml │ │ │ │ ├── setup_global.py.in │ │ │ │ └── setup_main.py.in │ │ ├── setup.py │ │ └── src │ │ │ └── main.cpp │ ├── DPViewer │ │ ├── CMakeLists.txt │ │ ├── dpviewer │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── viewer.cpp │ │ │ ├── viewer_cuda.cu │ │ │ └── viewer_cuda.h │ │ ├── pybind11 │ │ │ ├── .appveyor.yml │ │ │ ├── .clang-format │ │ │ ├── .clang-tidy │ │ │ ├── .cmake-format.yaml │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── CODEOWNERS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug-report.yml │ │ │ │ │ └── config.yml │ │ │ │ ├── dependabot.yml │ │ │ │ ├── labeler.yml │ │ │ │ ├── labeler_merged.yml │ │ │ │ ├── matchers │ │ │ │ │ └── pylint.json │ │ │ │ ├── pull_request_template.md │ │ │ │ └── workflows │ │ │ │ │ ├── ci.yml │ │ │ │ │ ├── configure.yml │ │ │ │ │ ├── format.yml │ │ │ │ │ ├── labeler.yml │ │ │ │ │ ├── pip.yml │ │ │ │ │ └── upstream.yml │ │ │ ├── .gitignore │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .readthedocs.yml │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── docs │ │ │ │ ├── Doxyfile │ │ │ │ ├── _static │ │ │ │ │ └── theme_overrides.css │ │ │ │ ├── advanced │ │ │ │ │ ├── cast │ │ │ │ │ │ ├── chrono.rst │ │ │ │ │ │ ├── custom.rst │ │ │ │ │ │ ├── eigen.rst │ │ │ │ │ │ ├── functional.rst │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── overview.rst │ │ │ │ │ │ ├── stl.rst │ │ │ │ │ │ └── strings.rst │ │ │ │ │ ├── classes.rst │ │ │ │ │ ├── embedding.rst │ │ │ │ │ ├── exceptions.rst │ │ │ │ │ ├── functions.rst │ │ │ │ │ ├── misc.rst │ │ │ │ │ ├── pycpp │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── numpy.rst │ │ │ │ │ │ ├── object.rst │ │ │ │ │ │ └── utilities.rst │ │ │ │ │ └── smart_ptrs.rst │ │ │ │ ├── basics.rst │ │ │ │ ├── benchmark.py │ │ │ │ ├── benchmark.rst │ │ │ │ ├── changelog.rst │ │ │ │ ├── classes.rst │ │ │ │ ├── cmake │ │ │ │ │ └── index.rst │ │ │ │ ├── compiling.rst │ │ │ │ ├── conf.py │ │ │ │ ├── faq.rst │ │ │ │ ├── index.rst │ │ │ │ ├── installing.rst │ │ │ │ ├── limitations.rst │ │ │ │ ├── pybind11-logo.png │ │ │ │ ├── pybind11_vs_boost_python1.png │ │ │ │ ├── pybind11_vs_boost_python1.svg │ │ │ │ ├── pybind11_vs_boost_python2.png │ │ │ │ ├── pybind11_vs_boost_python2.svg │ │ │ │ ├── reference.rst │ │ │ │ ├── release.rst │ │ │ │ ├── requirements.txt │ │ │ │ └── upgrade.rst │ │ │ ├── include │ │ │ │ └── pybind11 │ │ │ │ │ ├── attr.h │ │ │ │ │ ├── buffer_info.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── chrono.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── complex.h │ │ │ │ │ ├── detail │ │ │ │ │ ├── class.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── descr.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── internals.h │ │ │ │ │ ├── type_caster_base.h │ │ │ │ │ └── typeid.h │ │ │ │ │ ├── eigen.h │ │ │ │ │ ├── embed.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── functional.h │ │ │ │ │ ├── gil.h │ │ │ │ │ ├── iostream.h │ │ │ │ │ ├── numpy.h │ │ │ │ │ ├── operators.h │ │ │ │ │ ├── options.h │ │ │ │ │ ├── pybind11.h │ │ │ │ │ ├── pytypes.h │ │ │ │ │ ├── stl.h │ │ │ │ │ ├── stl │ │ │ │ │ └── filesystem.h │ │ │ │ │ └── stl_bind.h │ │ │ ├── noxfile.py │ │ │ ├── pybind11 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _version.py │ │ │ │ ├── commands.py │ │ │ │ ├── py.typed │ │ │ │ └── setup_helpers.py │ │ │ ├── pyproject.toml │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── tools │ │ │ │ ├── FindCatch.cmake │ │ │ │ ├── FindEigen3.cmake │ │ │ │ ├── FindPythonLibsNew.cmake │ │ │ │ ├── check-style.sh │ │ │ │ ├── cmake_uninstall.cmake.in │ │ │ │ ├── libsize.py │ │ │ │ ├── make_changelog.py │ │ │ │ ├── pybind11Common.cmake │ │ │ │ ├── pybind11Config.cmake.in │ │ │ │ ├── pybind11NewTools.cmake │ │ │ │ ├── pybind11Tools.cmake │ │ │ │ ├── pyproject.toml │ │ │ │ ├── setup_global.py.in │ │ │ │ └── setup_main.py.in │ │ └── setup.py │ ├── LICENSE │ ├── Pangolin │ │ ├── .clang-format │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ros_workspace.yml │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CMakeLists.txt │ │ ├── LICENCE │ │ ├── README.md │ │ ├── cmake │ │ │ ├── AndroidUtils.cmake │ │ │ ├── CreateMethodCallFile.cmake │ │ │ ├── EmbedBinaryFiles.cmake │ │ │ ├── EmscriptenUtils.cmake │ │ │ ├── FindDC1394.cmake │ │ │ ├── FindDepthSense.cmake │ │ │ ├── FindFFMPEG.cmake │ │ │ ├── FindGLEW.cmake │ │ │ ├── FindGLUES.cmake │ │ │ ├── FindLibraw.cmake │ │ │ ├── FindLz4.cmake │ │ │ ├── FindMediaFoundation.cmake │ │ │ ├── FindOculus.cmake │ │ │ ├── FindOpenEXR.cmake │ │ │ ├── FindOpenNI.cmake │ │ │ ├── FindOpenNI2.cmake │ │ │ ├── FindPleora.cmake │ │ │ ├── FindRealSense.cmake │ │ │ ├── FindRealSense2.cmake │ │ │ ├── FindTeliCam.cmake │ │ │ ├── FindTooN.cmake │ │ │ ├── FindXrandr.cmake │ │ │ ├── Findlibusb1.cmake │ │ │ ├── Findpthread.cmake │ │ │ ├── Finduvc.cmake │ │ │ ├── Findzstd.cmake │ │ │ ├── MakePythonWheel.cmake │ │ │ ├── PangolinConfig.cmake.in │ │ │ ├── PangolinConfigVersion.cmake.in │ │ │ ├── PangolinFactory.cmake │ │ │ ├── SetPlatformVars.cmake │ │ │ ├── cmake_uninstall.cmake.in │ │ │ └── wheel-dist-info │ │ │ │ ├── METADATA │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ ├── components │ │ │ ├── pango_core │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ ├── NaturalSort │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── natural_sort.hpp │ │ │ │ │ ├── dynalo │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── config.hpp │ │ │ │ │ │ │ ├── linux │ │ │ │ │ │ │ │ └── dynalo.hpp │ │ │ │ │ │ │ ├── macos │ │ │ │ │ │ │ │ └── dynalo.hpp │ │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ │ └── dynalo.hpp │ │ │ │ │ │ ├── dynalo.hpp │ │ │ │ │ │ └── symbol_helper.hpp │ │ │ │ │ ├── pangolin │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── glutbitmap.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ │ ├── factory │ │ │ │ │ │ │ ├── factory.h │ │ │ │ │ │ │ ├── factory_help.h │ │ │ │ │ │ │ └── factory_registry.h │ │ │ │ │ │ ├── pangolin.h │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── argagg.hpp │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── avx_math.h │ │ │ │ │ │ │ ├── bitmask.h │ │ │ │ │ │ │ ├── compontent_cast.h │ │ │ │ │ │ │ ├── file_extension.h │ │ │ │ │ │ │ ├── file_utils.h │ │ │ │ │ │ │ ├── fix_size_buffer_queue.h │ │ │ │ │ │ │ ├── format_string.h │ │ │ │ │ │ │ ├── is_streamable.h │ │ │ │ │ │ │ ├── log.h │ │ │ │ │ │ │ ├── memstreambuf.h │ │ │ │ │ │ │ ├── param_set.h │ │ │ │ │ │ │ ├── params.h │ │ │ │ │ │ │ ├── parse.h │ │ │ │ │ │ │ ├── picojson.h │ │ │ │ │ │ │ ├── posix │ │ │ │ │ │ │ ├── condition_variable.h │ │ │ │ │ │ │ ├── semaphore.h │ │ │ │ │ │ │ └── shared_memory_buffer.h │ │ │ │ │ │ │ ├── range.h │ │ │ │ │ │ │ ├── signal_slot.h │ │ │ │ │ │ │ ├── sigstate.h │ │ │ │ │ │ │ ├── simple_math.h │ │ │ │ │ │ │ ├── threadedfilebuf.h │ │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ │ ├── transform.h │ │ │ │ │ │ │ ├── true_false_toggle.h │ │ │ │ │ │ │ ├── type_convert.h │ │ │ │ │ │ │ ├── uri.h │ │ │ │ │ │ │ ├── variadic_all.h │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ │ ├── rapidxml.hpp │ │ │ │ │ │ │ ├── rapidxml_iterators.hpp │ │ │ │ │ │ │ ├── rapidxml_print.hpp │ │ │ │ │ │ │ └── rapidxml_utils.hpp │ │ │ │ │ └── sigslot │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── signal.hpp │ │ │ │ └── src │ │ │ │ │ ├── avx_math.cpp │ │ │ │ │ ├── dummy.cpp │ │ │ │ │ ├── factory │ │ │ │ │ ├── factory_help.cpp │ │ │ │ │ └── factory_registry.cpp │ │ │ │ │ ├── file_extension.cpp │ │ │ │ │ ├── file_utils.cpp │ │ │ │ │ ├── param_set.cpp │ │ │ │ │ ├── posix │ │ │ │ │ ├── condition_variable.cpp │ │ │ │ │ ├── semaphore.cpp │ │ │ │ │ └── shared_memory_buffer.cpp │ │ │ │ │ ├── sigstate.cpp │ │ │ │ │ ├── threadedfilebuf.cpp │ │ │ │ │ └── uri.cpp │ │ │ ├── pango_display │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ ├── console │ │ │ │ │ │ ├── ConsoleView.h │ │ │ │ │ │ └── InterpreterInterface.h │ │ │ │ │ │ ├── display │ │ │ │ │ │ ├── attach.h │ │ │ │ │ │ ├── default_font.h │ │ │ │ │ │ ├── display.h │ │ │ │ │ │ ├── display.hpp │ │ │ │ │ │ ├── image_view.h │ │ │ │ │ │ ├── process.h │ │ │ │ │ │ ├── user_app.h │ │ │ │ │ │ ├── view.h │ │ │ │ │ │ └── widgets.h │ │ │ │ │ │ └── handler │ │ │ │ │ │ ├── handler.h │ │ │ │ │ │ ├── handler_glbuffer.h │ │ │ │ │ │ └── handler_image.h │ │ │ │ └── src │ │ │ │ │ ├── ConsoleView.cpp │ │ │ │ │ ├── default_font.cpp │ │ │ │ │ ├── display.cpp │ │ │ │ │ ├── handler.cpp │ │ │ │ │ ├── handler_glbuffer.cpp │ │ │ │ │ ├── handler_image.cpp │ │ │ │ │ ├── image_view.cpp │ │ │ │ │ ├── pangolin_gl.cpp │ │ │ │ │ ├── pangolin_gl.h │ │ │ │ │ ├── process.cpp │ │ │ │ │ ├── view.cpp │ │ │ │ │ └── widgets.cpp │ │ │ ├── pango_geometry │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── geometry │ │ │ │ │ │ ├── geometry.h │ │ │ │ │ │ ├── geometry_obj.h │ │ │ │ │ │ └── geometry_ply.h │ │ │ │ └── src │ │ │ │ │ ├── geometry.cpp │ │ │ │ │ ├── geometry_obj.cpp │ │ │ │ │ └── geometry_ply.cpp │ │ │ ├── pango_glgeometry │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── geometry │ │ │ │ │ │ └── glgeometry.h │ │ │ │ └── src │ │ │ │ │ └── glgeometry.cpp │ │ │ ├── pango_image │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── image │ │ │ │ │ │ ├── copy.h │ │ │ │ │ │ ├── image.h │ │ │ │ │ │ ├── image_convert.h │ │ │ │ │ │ ├── image_io.h │ │ │ │ │ │ ├── image_utils.h │ │ │ │ │ │ ├── managed_image.h │ │ │ │ │ │ ├── memcpy.h │ │ │ │ │ │ ├── pixel_format.h │ │ │ │ │ │ ├── shared_image.h │ │ │ │ │ │ └── typed_image.h │ │ │ │ └── src │ │ │ │ │ ├── image_io.cpp │ │ │ │ │ ├── image_io_bmp.cpp │ │ │ │ │ ├── image_io_exr.cpp │ │ │ │ │ ├── image_io_jpg.cpp │ │ │ │ │ ├── image_io_libraw.cpp │ │ │ │ │ ├── image_io_lz4.cpp │ │ │ │ │ ├── image_io_packed12bit.cpp │ │ │ │ │ ├── image_io_pango.cpp │ │ │ │ │ ├── image_io_png.cpp │ │ │ │ │ ├── image_io_ppm.cpp │ │ │ │ │ ├── image_io_raw.cpp │ │ │ │ │ ├── image_io_tga.cpp │ │ │ │ │ ├── image_io_tiff.cpp │ │ │ │ │ ├── image_io_zstd.cpp │ │ │ │ │ └── pixel_format.cpp │ │ │ ├── pango_opengl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── gl │ │ │ │ │ │ ├── cg.h │ │ │ │ │ │ ├── colour.h │ │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── gl2engine.h │ │ │ │ │ │ └── gl_es_compat.h │ │ │ │ │ │ ├── gl.h │ │ │ │ │ │ ├── gl.hpp │ │ │ │ │ │ ├── glchar.h │ │ │ │ │ │ ├── glcuda.h │ │ │ │ │ │ ├── gldraw.h │ │ │ │ │ │ ├── glfont.h │ │ │ │ │ │ ├── glformattraits.h │ │ │ │ │ │ ├── glinclude.h │ │ │ │ │ │ ├── glpangoglu.h │ │ │ │ │ │ ├── glpixformat.h │ │ │ │ │ │ ├── glplatform.h │ │ │ │ │ │ ├── glsl.h │ │ │ │ │ │ ├── glstate.h │ │ │ │ │ │ ├── gltext.h │ │ │ │ │ │ ├── gltexturecache.h │ │ │ │ │ │ ├── glvbo.h │ │ │ │ │ │ ├── opengl_render_state.h │ │ │ │ │ │ └── viewport.h │ │ │ │ └── src │ │ │ │ │ ├── compat │ │ │ │ │ └── gl2engine.cpp │ │ │ │ │ ├── fonts │ │ │ │ │ ├── AnonymousPro.ttf │ │ │ │ │ └── AnonymousPro.txt │ │ │ │ │ ├── glchar.cpp │ │ │ │ │ ├── gldraw.cpp │ │ │ │ │ ├── glfont.cpp │ │ │ │ │ ├── glpangoglu.cpp │ │ │ │ │ ├── gltext.cpp │ │ │ │ │ ├── gltexturecache.cpp │ │ │ │ │ ├── opengl_render_state.cpp │ │ │ │ │ ├── stb_truetype.h │ │ │ │ │ └── viewport.cpp │ │ │ ├── pango_packetstream │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── log │ │ │ │ │ │ ├── packet.h │ │ │ │ │ │ ├── packetstream.h │ │ │ │ │ │ ├── packetstream_reader.h │ │ │ │ │ │ ├── packetstream_source.h │ │ │ │ │ │ ├── packetstream_tags.h │ │ │ │ │ │ ├── packetstream_writer.h │ │ │ │ │ │ ├── playback_session.h │ │ │ │ │ │ └── sync_time.h │ │ │ │ └── src │ │ │ │ │ ├── packet.cpp │ │ │ │ │ ├── packetstream.cpp │ │ │ │ │ ├── packetstream_reader.cpp │ │ │ │ │ ├── packetstream_writer.cpp │ │ │ │ │ └── playback_session.cpp │ │ │ ├── pango_plot │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── plot │ │ │ │ │ │ ├── datalog.h │ │ │ │ │ │ ├── loaders │ │ │ │ │ │ ├── csv_table_loader.h │ │ │ │ │ │ └── table_loader.h │ │ │ │ │ │ └── plotter.h │ │ │ │ └── src │ │ │ │ │ ├── datalog.cpp │ │ │ │ │ ├── loaders │ │ │ │ │ └── csv_table_loader.cpp │ │ │ │ │ └── plotter.cpp │ │ │ ├── pango_python │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── python │ │ │ │ │ │ └── pyinterpreter.h │ │ │ │ ├── pybind11 │ │ │ │ │ ├── .appveyor.yml │ │ │ │ │ ├── .clang-format │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ ├── .cmake-format.yaml │ │ │ │ │ ├── .github │ │ │ │ │ │ ├── CODEOWNERS │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ │ ├── bug-report.md │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ ├── feature-request.md │ │ │ │ │ │ │ └── question.md │ │ │ │ │ │ ├── dependabot.yml │ │ │ │ │ │ ├── labeler.yml │ │ │ │ │ │ ├── labeler_merged.yml │ │ │ │ │ │ ├── pull_request_template.md │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── ci.yml │ │ │ │ │ │ │ ├── configure.yml │ │ │ │ │ │ │ ├── format.yml │ │ │ │ │ │ │ ├── labeler.yml │ │ │ │ │ │ │ └── pip.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .pre-commit-config.yaml │ │ │ │ │ ├── .readthedocs.yml │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MANIFEST.in │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── Doxyfile │ │ │ │ │ │ ├── _static │ │ │ │ │ │ │ └── theme_overrides.css │ │ │ │ │ │ ├── advanced │ │ │ │ │ │ │ ├── cast │ │ │ │ │ │ │ │ ├── chrono.rst │ │ │ │ │ │ │ │ ├── custom.rst │ │ │ │ │ │ │ │ ├── eigen.rst │ │ │ │ │ │ │ │ ├── functional.rst │ │ │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ │ │ ├── overview.rst │ │ │ │ │ │ │ │ ├── stl.rst │ │ │ │ │ │ │ │ └── strings.rst │ │ │ │ │ │ │ ├── classes.rst │ │ │ │ │ │ │ ├── embedding.rst │ │ │ │ │ │ │ ├── exceptions.rst │ │ │ │ │ │ │ ├── functions.rst │ │ │ │ │ │ │ ├── misc.rst │ │ │ │ │ │ │ ├── pycpp │ │ │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ │ │ ├── numpy.rst │ │ │ │ │ │ │ │ ├── object.rst │ │ │ │ │ │ │ │ └── utilities.rst │ │ │ │ │ │ │ └── smart_ptrs.rst │ │ │ │ │ │ ├── basics.rst │ │ │ │ │ │ ├── benchmark.py │ │ │ │ │ │ ├── benchmark.rst │ │ │ │ │ │ ├── changelog.rst │ │ │ │ │ │ ├── classes.rst │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ └── index.rst │ │ │ │ │ │ ├── compiling.rst │ │ │ │ │ │ ├── conf.py │ │ │ │ │ │ ├── faq.rst │ │ │ │ │ │ ├── index.rst │ │ │ │ │ │ ├── installing.rst │ │ │ │ │ │ ├── limitations.rst │ │ │ │ │ │ ├── pybind11-logo.png │ │ │ │ │ │ ├── pybind11_vs_boost_python1.png │ │ │ │ │ │ ├── pybind11_vs_boost_python1.svg │ │ │ │ │ │ ├── pybind11_vs_boost_python2.png │ │ │ │ │ │ ├── pybind11_vs_boost_python2.svg │ │ │ │ │ │ ├── reference.rst │ │ │ │ │ │ ├── release.rst │ │ │ │ │ │ ├── requirements.txt │ │ │ │ │ │ └── upgrade.rst │ │ │ │ │ ├── include │ │ │ │ │ │ └── pybind11 │ │ │ │ │ │ │ ├── attr.h │ │ │ │ │ │ │ ├── buffer_info.h │ │ │ │ │ │ │ ├── cast.h │ │ │ │ │ │ │ ├── chrono.h │ │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ │ ├── complex.h │ │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── class.h │ │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ │ ├── descr.h │ │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ │ ├── internals.h │ │ │ │ │ │ │ ├── type_caster_base.h │ │ │ │ │ │ │ └── typeid.h │ │ │ │ │ │ │ ├── eigen.h │ │ │ │ │ │ │ ├── embed.h │ │ │ │ │ │ │ ├── eval.h │ │ │ │ │ │ │ ├── functional.h │ │ │ │ │ │ │ ├── gil.h │ │ │ │ │ │ │ ├── iostream.h │ │ │ │ │ │ │ ├── numpy.h │ │ │ │ │ │ │ ├── operators.h │ │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ │ ├── pybind11.h │ │ │ │ │ │ │ ├── pytypes.h │ │ │ │ │ │ │ ├── stl.h │ │ │ │ │ │ │ ├── stl │ │ │ │ │ │ │ └── filesystem.h │ │ │ │ │ │ │ └── stl_bind.h │ │ │ │ │ ├── noxfile.py │ │ │ │ │ ├── pybind11 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── _version.py │ │ │ │ │ │ ├── _version.pyi │ │ │ │ │ │ ├── commands.py │ │ │ │ │ │ ├── py.typed │ │ │ │ │ │ ├── setup_helpers.py │ │ │ │ │ │ └── setup_helpers.pyi │ │ │ │ │ ├── pyproject.toml │ │ │ │ │ ├── setup.cfg │ │ │ │ │ ├── setup.py │ │ │ │ │ └── tools │ │ │ │ │ │ ├── FindCatch.cmake │ │ │ │ │ │ ├── FindEigen3.cmake │ │ │ │ │ │ ├── FindPythonLibsNew.cmake │ │ │ │ │ │ ├── check-style.sh │ │ │ │ │ │ ├── cmake_uninstall.cmake.in │ │ │ │ │ │ ├── libsize.py │ │ │ │ │ │ ├── make_changelog.py │ │ │ │ │ │ ├── pybind11Common.cmake │ │ │ │ │ │ ├── pybind11Config.cmake.in │ │ │ │ │ │ ├── pybind11NewTools.cmake │ │ │ │ │ │ ├── pybind11Tools.cmake │ │ │ │ │ │ ├── pyproject.toml │ │ │ │ │ │ ├── setup_global.py.in │ │ │ │ │ │ └── setup_main.py.in │ │ │ │ └── src │ │ │ │ │ ├── pyinterpreter.cpp │ │ │ │ │ ├── pypangolin │ │ │ │ │ ├── attach.cpp │ │ │ │ │ ├── attach.hpp │ │ │ │ │ ├── colour.cpp │ │ │ │ │ ├── colour.hpp │ │ │ │ │ ├── datalog.cpp │ │ │ │ │ ├── datalog.hpp │ │ │ │ │ ├── display.cpp │ │ │ │ │ ├── display.hpp │ │ │ │ │ ├── gl.cpp │ │ │ │ │ ├── gl.hpp │ │ │ │ │ ├── gl_draw.cpp │ │ │ │ │ ├── gl_draw.hpp │ │ │ │ │ ├── glsl.cpp │ │ │ │ │ ├── glsl.hpp │ │ │ │ │ ├── glvbo.cpp │ │ │ │ │ ├── glvbo.hpp │ │ │ │ │ ├── handler.cpp │ │ │ │ │ ├── handler.hpp │ │ │ │ │ ├── image.cpp │ │ │ │ │ ├── image.hpp │ │ │ │ │ ├── image_view.cpp │ │ │ │ │ ├── image_view.hpp │ │ │ │ │ ├── opengl_render_state.cpp │ │ │ │ │ ├── opengl_render_state.hpp │ │ │ │ │ ├── params.cpp │ │ │ │ │ ├── params.hpp │ │ │ │ │ ├── pixel_format.cpp │ │ │ │ │ ├── pixel_format.hpp │ │ │ │ │ ├── plotter.cpp │ │ │ │ │ ├── plotter.hpp │ │ │ │ │ ├── pypangoio.cpp │ │ │ │ │ ├── pypangoio.h │ │ │ │ │ ├── pypangolin.h │ │ │ │ │ ├── var.cpp │ │ │ │ │ ├── var.hpp │ │ │ │ │ ├── video.cpp │ │ │ │ │ ├── video.hpp │ │ │ │ │ ├── view.cpp │ │ │ │ │ ├── view.hpp │ │ │ │ │ ├── viewport.cpp │ │ │ │ │ ├── viewport.hpp │ │ │ │ │ ├── widget.cpp │ │ │ │ │ ├── widget.hpp │ │ │ │ │ ├── window.cpp │ │ │ │ │ └── window.hpp │ │ │ │ │ ├── pypangolin_embed.cpp │ │ │ │ │ └── pypangolin_module.cpp │ │ │ ├── pango_scene │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── scene │ │ │ │ │ │ ├── axis.h │ │ │ │ │ │ ├── interactive.h │ │ │ │ │ │ ├── interactive_index.h │ │ │ │ │ │ ├── renderable.h │ │ │ │ │ │ ├── scenehandler.h │ │ │ │ │ │ └── tree.h │ │ │ │ └── src │ │ │ │ │ └── renderable.cpp │ │ │ ├── pango_tools │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── tools │ │ │ │ │ │ └── video_viewer.h │ │ │ │ └── src │ │ │ │ │ └── video_viewer.cpp │ │ │ ├── pango_vars │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ │ ├── vars.cpp │ │ │ │ │ └── varstate.cpp │ │ │ ├── pango_video │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── video │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ ├── debayer.h │ │ │ │ │ │ ├── deinterlace.h │ │ │ │ │ │ ├── depthsense.h │ │ │ │ │ │ ├── ffmpeg.h │ │ │ │ │ │ ├── ffmpeg_common.h │ │ │ │ │ │ ├── ffmpeg_convert.h │ │ │ │ │ │ ├── ffmpeg_output.h │ │ │ │ │ │ ├── firewire.h │ │ │ │ │ │ ├── gamma.h │ │ │ │ │ │ ├── images.h │ │ │ │ │ │ ├── images_out.h │ │ │ │ │ │ ├── join.h │ │ │ │ │ │ ├── merge.h │ │ │ │ │ │ ├── mjpeg.h │ │ │ │ │ │ ├── openni.h │ │ │ │ │ │ ├── openni2.h │ │ │ │ │ │ ├── openni_common.h │ │ │ │ │ │ ├── pack.h │ │ │ │ │ │ ├── pango.h │ │ │ │ │ │ ├── pango_video_output.h │ │ │ │ │ │ ├── pleora.h │ │ │ │ │ │ ├── realsense.h │ │ │ │ │ │ ├── realsense2.h │ │ │ │ │ │ ├── shared_memory.h │ │ │ │ │ │ ├── shift.h │ │ │ │ │ │ ├── split.h │ │ │ │ │ │ ├── teli.h │ │ │ │ │ │ ├── test.h │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ ├── transform.h │ │ │ │ │ │ ├── truncate.h │ │ │ │ │ │ ├── unpack.h │ │ │ │ │ │ ├── uvc.h │ │ │ │ │ │ ├── uvc_mediafoundation.h │ │ │ │ │ │ └── v4l.h │ │ │ │ │ │ ├── iostream_operators.h │ │ │ │ │ │ ├── stream_encoder_factory.h │ │ │ │ │ │ ├── stream_info.h │ │ │ │ │ │ ├── video.h │ │ │ │ │ │ ├── video_exception.h │ │ │ │ │ │ ├── video_help.h │ │ │ │ │ │ ├── video_input.h │ │ │ │ │ │ ├── video_interface.h │ │ │ │ │ │ ├── video_output.h │ │ │ │ │ │ ├── video_output_interface.h │ │ │ │ │ │ └── video_record_repeat.h │ │ │ │ └── src │ │ │ │ │ ├── drivers │ │ │ │ │ ├── debayer.cpp │ │ │ │ │ ├── deinterlace.cpp │ │ │ │ │ ├── depthsense.cpp │ │ │ │ │ ├── ffmpeg.cpp │ │ │ │ │ ├── ffmpeg_convert.cpp │ │ │ │ │ ├── ffmpeg_output.cpp │ │ │ │ │ ├── firewire.cpp │ │ │ │ │ ├── gamma.cpp │ │ │ │ │ ├── images.cpp │ │ │ │ │ ├── images_out.cpp │ │ │ │ │ ├── join.cpp │ │ │ │ │ ├── json.cpp │ │ │ │ │ ├── merge.cpp │ │ │ │ │ ├── mjpeg.cpp │ │ │ │ │ ├── openni.cpp │ │ │ │ │ ├── openni2.cpp │ │ │ │ │ ├── pack.cpp │ │ │ │ │ ├── pango.cpp │ │ │ │ │ ├── pango_video_output.cpp │ │ │ │ │ ├── pleora.cpp │ │ │ │ │ ├── realsense.cpp │ │ │ │ │ ├── realsense2.cpp │ │ │ │ │ ├── shared_memory.cpp │ │ │ │ │ ├── shift.cpp │ │ │ │ │ ├── split.cpp │ │ │ │ │ ├── teli.cpp │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── thread.cpp │ │ │ │ │ ├── transform.cpp │ │ │ │ │ ├── truncate.cpp │ │ │ │ │ ├── unpack.cpp │ │ │ │ │ ├── uvc.cpp │ │ │ │ │ ├── uvc_mediafoundation.cpp │ │ │ │ │ └── v4l.cpp │ │ │ │ │ ├── stream_encoder_factory.cpp │ │ │ │ │ ├── video.cpp │ │ │ │ │ ├── video_help.cpp │ │ │ │ │ ├── video_input.cpp │ │ │ │ │ └── video_output.cpp │ │ │ ├── pango_windowing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── pangolin │ │ │ │ │ │ └── windowing │ │ │ │ │ │ ├── EmscriptenWindow.h │ │ │ │ │ │ ├── OsxWindow.h │ │ │ │ │ │ ├── PangolinNSApplication.h │ │ │ │ │ │ ├── PangolinNSGLView.h │ │ │ │ │ │ ├── WinWindow.h │ │ │ │ │ │ ├── X11GlContext.h │ │ │ │ │ │ ├── X11Window.h │ │ │ │ │ │ ├── display_android.h │ │ │ │ │ │ ├── handler_bitsets.h │ │ │ │ │ │ ├── handler_enums.h │ │ │ │ │ │ └── window.h │ │ │ │ └── src │ │ │ │ │ ├── PangolinNSApplication.mm │ │ │ │ │ ├── PangolinNSGLView.mm │ │ │ │ │ ├── display_android.cpp │ │ │ │ │ ├── display_emscripten.cpp │ │ │ │ │ ├── display_headless.cpp │ │ │ │ │ ├── display_osx.mm │ │ │ │ │ ├── display_wayland.cpp │ │ │ │ │ ├── display_win.cpp │ │ │ │ │ ├── display_x11.cpp │ │ │ │ │ └── window.cpp │ │ │ └── tinyobj │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ └── tinyobj │ │ │ │ │ └── tiny_obj_loader.h │ │ │ │ └── src │ │ │ │ └── tinyobj.cpp │ │ ├── examples │ │ │ ├── BasicOpenGL │ │ │ │ ├── 1_gl_intro_classic_triangle.cpp │ │ │ │ ├── 1_gl_intro_pango_triangle.cpp │ │ │ │ ├── 2_gl_intro_classic_triangle_vbo.cpp │ │ │ │ ├── 2_gl_intro_pango_triangle_vbo.cpp │ │ │ │ ├── 3_gl_intro_classic_triangle_vbo_shader.cpp │ │ │ │ ├── 3_gl_intro_pango_triangle_vbo_shader.cpp │ │ │ │ ├── 4_gl_intro_viewport.cpp │ │ │ │ ├── 5_gl_intro_view_transforms.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── README.md │ │ │ ├── CMakeLists.txt │ │ │ ├── HelloPangolin │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── HelloPangolinOffscreen │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── HelloPangolinThreads │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── PythonExamples │ │ │ │ ├── SimpleDisplay.py │ │ │ │ ├── SimplePlot.py │ │ │ │ └── SimpleVideo.py │ │ │ ├── SharedMemoryCamera │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── SimpleDisplay │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── app.cfg │ │ │ │ └── main.cpp │ │ │ ├── SimpleDisplayImage │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── SimpleMultiDisplay │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── app.cfg │ │ │ │ └── main.cpp │ │ │ ├── SimplePlot │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── SimpleRecord │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── SimpleScene │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── SimpleVideo │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── VBODisplay │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── kernal.cu │ │ │ │ └── main.cpp │ │ ├── package.xml │ │ ├── scripts │ │ │ ├── install_prerequisites.sh │ │ │ ├── utils │ │ │ │ └── ansi2html.sh │ │ │ └── vcpkg │ │ │ │ ├── .gitattributes │ │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── i-have-a-question.md │ │ │ │ │ ├── other-type-of-bug-report.md │ │ │ │ │ ├── report-package-build-failure.md │ │ │ │ │ ├── request-a-feature-or-improvement-to-a-port.md │ │ │ │ │ ├── request-a-feature-or-improvement.md │ │ │ │ │ ├── request-a-new-port.md │ │ │ │ │ └── request-an-update-to-an-existing-port.md │ │ │ │ ├── pull_request_template.md │ │ │ │ └── workflows │ │ │ │ │ ├── trustedPR.yml │ │ │ │ │ └── untrustedPR.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .vcpkg-root │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTING_zh.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── NOTICE.txt │ │ │ │ ├── README.md │ │ │ │ ├── README_es.md │ │ │ │ ├── README_fr.md │ │ │ │ ├── README_ko_KR.md │ │ │ │ ├── README_zh_CN.md │ │ │ │ ├── bootstrap-vcpkg.bat │ │ │ │ ├── bootstrap-vcpkg.sh │ │ │ │ ├── docs │ │ │ │ ├── README.md │ │ │ │ ├── _config.yml │ │ │ │ ├── about │ │ │ │ │ ├── faq.md │ │ │ │ │ └── privacy.md │ │ │ │ ├── examples │ │ │ │ │ ├── installing-and-using-packages.md │ │ │ │ │ ├── manifest-mode-cmake.md │ │ │ │ │ ├── modify-baseline-to-pin-old-boost.md │ │ │ │ │ ├── overlay-triplets-linux-dynamic.md │ │ │ │ │ ├── packaging-github-repos.md │ │ │ │ │ ├── packaging-zipfiles.md │ │ │ │ │ ├── patching.md │ │ │ │ │ ├── vcpkg_android_example_cmake │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── compile.sh │ │ │ │ │ │ └── my_lib.cpp │ │ │ │ │ ├── vcpkg_android_example_cmake_script │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ └── vcpkg_android.cmake │ │ │ │ │ │ ├── compile.sh │ │ │ │ │ │ └── my_lib.cpp │ │ │ │ │ └── versioning.getting-started.md │ │ │ │ ├── maintainers │ │ │ │ │ ├── authoring-script-ports.md │ │ │ │ │ ├── cmake-guidelines.md │ │ │ │ │ ├── control-files.md │ │ │ │ │ ├── execute_process.md │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── z_vcpkg_apply_patches.md │ │ │ │ │ │ ├── z_vcpkg_forward_output_variable.md │ │ │ │ │ │ ├── z_vcpkg_function_arguments.md │ │ │ │ │ │ ├── z_vcpkg_get_cmake_vars.md │ │ │ │ │ │ └── z_vcpkg_prettify_command_line.md │ │ │ │ │ ├── maintainer-guide.md │ │ │ │ │ ├── manifest-files.md │ │ │ │ │ ├── portfile-functions.md │ │ │ │ │ ├── ports │ │ │ │ │ │ ├── vcpkg-cmake-config.md │ │ │ │ │ │ ├── vcpkg-cmake-config │ │ │ │ │ │ │ └── vcpkg_cmake_config_fixup.md │ │ │ │ │ │ ├── vcpkg-cmake.md │ │ │ │ │ │ ├── vcpkg-cmake │ │ │ │ │ │ │ ├── vcpkg_cmake_build.md │ │ │ │ │ │ │ ├── vcpkg_cmake_configure.md │ │ │ │ │ │ │ ├── vcpkg_cmake_get_vars.md │ │ │ │ │ │ │ └── vcpkg_cmake_install.md │ │ │ │ │ │ ├── vcpkg-pkgconfig-get-modules.md │ │ │ │ │ │ └── vcpkg-pkgconfig-get-modules │ │ │ │ │ │ │ └── x_vcpkg_pkgconfig_get_modules.md │ │ │ │ │ ├── pr-review-checklist.md │ │ │ │ │ ├── registries.md │ │ │ │ │ ├── vcpkg_acquire_msys.md │ │ │ │ │ ├── vcpkg_add_to_path.md │ │ │ │ │ ├── vcpkg_apply_patches.md │ │ │ │ │ ├── vcpkg_backup_restore_env_vars.md │ │ │ │ │ ├── vcpkg_build_cmake.md │ │ │ │ │ ├── vcpkg_build_make.md │ │ │ │ │ ├── vcpkg_build_msbuild.md │ │ │ │ │ ├── vcpkg_build_ninja.md │ │ │ │ │ ├── vcpkg_build_nmake.md │ │ │ │ │ ├── vcpkg_build_qmake.md │ │ │ │ │ ├── vcpkg_buildpath_length_warning.md │ │ │ │ │ ├── vcpkg_check_features.md │ │ │ │ │ ├── vcpkg_check_linkage.md │ │ │ │ │ ├── vcpkg_clean_executables_in_bin.md │ │ │ │ │ ├── vcpkg_clean_msbuild.md │ │ │ │ │ ├── vcpkg_common_definitions.md │ │ │ │ │ ├── vcpkg_configure_cmake.md │ │ │ │ │ ├── vcpkg_configure_gn.md │ │ │ │ │ ├── vcpkg_configure_make.md │ │ │ │ │ ├── vcpkg_configure_meson.md │ │ │ │ │ ├── vcpkg_configure_qmake.md │ │ │ │ │ ├── vcpkg_copy_pdbs.md │ │ │ │ │ ├── vcpkg_copy_tool_dependencies.md │ │ │ │ │ ├── vcpkg_copy_tools.md │ │ │ │ │ ├── vcpkg_download_distfile.md │ │ │ │ │ ├── vcpkg_execute_build_process.md │ │ │ │ │ ├── vcpkg_execute_in_download_mode.md │ │ │ │ │ ├── vcpkg_execute_required_process.md │ │ │ │ │ ├── vcpkg_execute_required_process_repeat.md │ │ │ │ │ ├── vcpkg_extract_source_archive.md │ │ │ │ │ ├── vcpkg_extract_source_archive_ex.md │ │ │ │ │ ├── vcpkg_fail_port_install.md │ │ │ │ │ ├── vcpkg_find_acquire_program.md │ │ │ │ │ ├── vcpkg_find_fortran.md │ │ │ │ │ ├── vcpkg_fixup_cmake_targets.md │ │ │ │ │ ├── vcpkg_fixup_pkgconfig.md │ │ │ │ │ ├── vcpkg_from_bitbucket.md │ │ │ │ │ ├── vcpkg_from_git.md │ │ │ │ │ ├── vcpkg_from_github.md │ │ │ │ │ ├── vcpkg_from_gitlab.md │ │ │ │ │ ├── vcpkg_from_sourceforge.md │ │ │ │ │ ├── vcpkg_get_program_files_platform_bitness.md │ │ │ │ │ ├── vcpkg_get_windows_sdk.md │ │ │ │ │ ├── vcpkg_host_path_list.md │ │ │ │ │ ├── vcpkg_install_cmake.md │ │ │ │ │ ├── vcpkg_install_gn.md │ │ │ │ │ ├── vcpkg_install_make.md │ │ │ │ │ ├── vcpkg_install_meson.md │ │ │ │ │ ├── vcpkg_install_msbuild.md │ │ │ │ │ ├── vcpkg_install_nmake.md │ │ │ │ │ ├── vcpkg_install_qmake.md │ │ │ │ │ ├── vcpkg_list.md │ │ │ │ │ ├── vcpkg_minimum_required.md │ │ │ │ │ └── vcpkg_replace_string.md │ │ │ │ ├── regenerate.ps1 │ │ │ │ ├── specifications │ │ │ │ │ ├── binarycaching.md │ │ │ │ │ ├── export-command.md │ │ │ │ │ ├── feature-packages.md │ │ │ │ │ ├── manifests.md │ │ │ │ │ ├── ports-overlay.md │ │ │ │ │ ├── prefab.md │ │ │ │ │ ├── registries-2.md │ │ │ │ │ ├── registries.md │ │ │ │ │ ├── scripts-extraction.md │ │ │ │ │ └── versioning.md │ │ │ │ └── users │ │ │ │ │ ├── android.md │ │ │ │ │ ├── assetcaching.md │ │ │ │ │ ├── authentication.md │ │ │ │ │ ├── binarycaching.md │ │ │ │ │ ├── config-environment.md │ │ │ │ │ ├── host-dependencies.md │ │ │ │ │ ├── integration.md │ │ │ │ │ ├── manifests.md │ │ │ │ │ ├── mingw.md │ │ │ │ │ ├── registries.md │ │ │ │ │ ├── selecting-library-features.md │ │ │ │ │ ├── triplets.md │ │ │ │ │ ├── versioning.implementation-details.md │ │ │ │ │ └── versioning.md │ │ │ │ ├── ports │ │ │ │ ├── 3fd │ │ │ │ │ ├── RapidXML.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── 7zip │ │ │ │ │ ├── 7zip-config.cmake.in │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── abseil │ │ │ │ │ ├── fix-32-bit-arm.patch │ │ │ │ │ ├── fix-cxx-standard.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── absent │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ace │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── activemq-cpp │ │ │ │ │ ├── FunctionLevelLinkingOn.diff │ │ │ │ │ ├── activemq-cppConfig.cmake │ │ │ │ │ ├── fix-crt-linkage-dyn.patch │ │ │ │ │ ├── fix-crt-linkage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ade │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── advobfuscator │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aixlog │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── akali │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── alac-decoder │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── decomp.c │ │ │ │ │ ├── no-pragma-warning.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_stdint_headers.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── alac │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── alembic │ │ │ │ │ ├── disable-warnings-as-error.patch │ │ │ │ │ ├── fix-runtime-destination.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aliyun-oss-c-sdk │ │ │ │ │ ├── patch.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── allegro5 │ │ │ │ │ ├── do-not-copy-pdbs-to-lib.patch │ │ │ │ │ ├── export-targets.patch │ │ │ │ │ ├── fix-pdb-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── alsa │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ampl-asl │ │ │ │ │ ├── copyright │ │ │ │ │ ├── fix-crt-linkage.patch │ │ │ │ │ ├── install-extra-headers.patch │ │ │ │ │ ├── install-targets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── workaround-msvc-optimizer-ice.patch │ │ │ │ ├── ampl-mp │ │ │ │ │ ├── disable-matlab-mex.patch │ │ │ │ │ ├── fix-arm-build.patch │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── fix-dependency-asl.patch │ │ │ │ │ ├── install-targets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── amqpcpp │ │ │ │ │ ├── find-openssl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── anax │ │ │ │ │ ├── Add-bin-output.patch │ │ │ │ │ ├── osx-arm.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── angelscript │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── mark-threads-private.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── angle │ │ │ │ │ ├── 001-fix-uwp.patch │ │ │ │ │ ├── 002-fix-builder-error.patch │ │ │ │ │ ├── 003-fix-mingw.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── angle_commit.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── third-party-zlib-far-undef.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── antlr4 │ │ │ │ │ ├── export_guid.patch │ │ │ │ │ ├── fix_utfcpp_dependency.patch │ │ │ │ │ ├── fixed_build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uuid_discovery_fix.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── any-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── anyrpc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aom │ │ │ │ │ ├── aom-install.diff │ │ │ │ │ ├── aom-rename-static.diff │ │ │ │ │ ├── aom-uninitialized-pointer.diff │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── approval-tests-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── apr-util │ │ │ │ │ ├── apr.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-vcpkg-expat.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── apr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── apsi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── arb │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── arcus │ │ │ │ │ ├── 0001-fix-protobuf-deprecated.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── argagg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── argh │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_unnamespaced_license_file.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── argparse │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── args │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── argtable2 │ │ │ │ │ ├── 0001-fix-install-dirs.patch │ │ │ │ │ ├── 0002-include-correct-headers.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── argtable3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── argumentum │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aricpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── armadillo │ │ │ │ │ ├── add-disable-find-package.patch │ │ │ │ │ ├── fix-CMakePath.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_custom_modules.patch │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── arrayfire │ │ │ │ │ ├── Fix-constexpr-error-with-vs2019-with-half.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── arrow │ │ │ │ │ ├── all.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ashes │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── asio-grpc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── asio │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── asio-config.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── asiosdk │ │ │ │ │ ├── Findasiosdk.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── asmjit │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── assimp │ │ │ │ │ ├── irrlicht.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── asynch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── asyncplusplus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── atk │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── atkmm │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── atlmfc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── atomic-queue │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aubio │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── audiofile │ │ │ │ │ ├── fix-cmakeLists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aurora │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── autobahn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── autodock-vina │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── avcpp │ │ │ │ │ ├── 0002-av_init_packet_deprecation.patch │ │ │ │ │ ├── fix-pkgconfig-location.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── avisynthplus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── avro-c │ │ │ │ │ ├── avro.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── avro-cpp │ │ │ │ │ ├── fix-windows-build.patch │ │ │ │ │ ├── install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-auth │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-cal │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-libcrypto-messages.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-common │ │ │ │ │ ├── disable-internal-crt-option.patch │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-compression │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-event-stream │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-http │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-io │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-mqtt │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-c-s3 │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-checksums │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-crt-cpp │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── fix-ios-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-lambda-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── aws-sdk-cpp │ │ │ │ │ ├── compute_build_only.cmake │ │ │ │ │ ├── fix-aws-root.patch │ │ │ │ │ ├── fix-openssl3.patch │ │ │ │ │ ├── generateFeatures.ps1 │ │ │ │ │ ├── patch-relocatable-rpath.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azmq │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-c-shared-utility │ │ │ │ │ ├── disable-error.patch │ │ │ │ │ ├── fix-install-location-preview.patch │ │ │ │ │ ├── fix-install-location.patch │ │ │ │ │ ├── fix-utilityFunctions-conditions-preview.patch │ │ │ │ │ ├── fix-utilityFunctions-conditions.patch │ │ │ │ │ ├── improve-dependencies-preview.patch │ │ │ │ │ ├── improve-dependencies.patch │ │ │ │ │ ├── openssl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-core-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-identity-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-iot-sdk-c │ │ │ │ │ ├── fix-install-location.patch │ │ │ │ │ ├── fix-iothubclient-includes.patch │ │ │ │ │ ├── improve-external-deps-preview.patch │ │ │ │ │ ├── improve-external-deps.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-kinect-sensor-sdk │ │ │ │ │ ├── fix-build-imgui.patch │ │ │ │ │ ├── fix-builds.patch │ │ │ │ │ ├── fix-calibration-c.patch │ │ │ │ │ ├── fix-dependency-imgui.patch │ │ │ │ │ ├── fix-linux.patch │ │ │ │ │ ├── k4adeploy.ps1 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-macro-utils-c │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-security-attestation-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-security-keyvault-certificates-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-security-keyvault-keys-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-security-keyvault-secrets-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-storage-blobs-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-storage-common-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-storage-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-storage-files-datalake-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-storage-files-shares-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-storage-queues-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-uamqp-c │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-uhttp-c │ │ │ │ │ ├── package-location-fix-preview.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── azure-umqtt-c │ │ │ │ │ ├── package-location-fix-preview.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── b64 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── b64_dynamic_config.h │ │ │ │ │ ├── b64_static_config.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── windows-fix.patch │ │ │ │ ├── basisu │ │ │ │ │ ├── fix-addostream.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bcg729 │ │ │ │ │ ├── disable-alt-packaging.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bddisasm │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bde │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bdwgc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── beast │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── behaviortree-cpp │ │ │ │ │ ├── 001_port_fixes.patch │ │ │ │ │ ├── 002_fix_dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── benchmark │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bento4 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── fix-install-and-c4996-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── berkeleydb │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-conflict-macro.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bext-di │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bext-sml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bext-ut │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bext-wintls │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bfgroup-lyra │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bigint │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-osx-usage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── binn │ │ │ │ │ ├── 0001_fix_uwp.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bitmagic │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bitserializer-cpprestjson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bitserializer-pugixml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bitserializer-rapidjson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bitserializer-rapidyaml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bitserializer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bitsery │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── blas │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── blaze │ │ │ │ │ ├── fix-vm-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── blend2d │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── blitz │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── blosc │ │ │ │ │ ├── 0001-find-deps.patch │ │ │ │ │ ├── 0002-export-blosc-config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boinc │ │ │ │ │ ├── 001-add-openssl3-support.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bond │ │ │ │ │ ├── fix-install-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── skip-grpc-compilation.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boolinq │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-accumulators │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-algorithm │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-align │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-any │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-array │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-asio │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── windows_alloca_header.patch │ │ │ │ ├── boost-assert │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-assign │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-atomic │ │ │ │ │ ├── 0001-fix-compilation-for-uwp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-beast │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-bimap │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-bind │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-build │ │ │ │ │ ├── 0001-don-t-skip-install-targets.patch │ │ │ │ │ ├── 0002-fix-get-version.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-callable-traits │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-chrono │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-circular-buffer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-compatibility │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-compute │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-concept-check │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-config │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-container-hash │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-container │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-context │ │ │ │ │ ├── b2-options.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-contract │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-conversion │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-convert │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-core │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-coroutine │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-coroutine2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-crc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-date-time │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-describe │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-detail │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-dll │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-dynamic-bitset │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-endian │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-exception │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-fiber │ │ │ │ │ ├── b2-options.cmake │ │ │ │ │ ├── fix-build-numa.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-filesystem │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-flyweight │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-foreach │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-format │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-function-types │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-function │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-functional │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-fusion │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-geometry │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-gil │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-graph-parallel │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-graph │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-hana │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-heap │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-histogram │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-hof │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-icl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-integer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-interprocess │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-interval │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-intrusive │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-io │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-iostreams │ │ │ │ │ ├── Removeseekpos.patch │ │ │ │ │ ├── b2-options.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-iterator │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-json │ │ │ │ │ ├── b2-options.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-lambda │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-lambda2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-leaf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-lexical-cast │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-local-function │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-locale │ │ │ │ │ ├── 0001-Fix-boost-ICU-support.patch │ │ │ │ │ ├── allow-force-finding-iconv.patch │ │ │ │ │ ├── b2-options.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-lockfree │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-log │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-logic │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-math │ │ │ │ │ ├── 001-remove-checks.patch │ │ │ │ │ ├── b2-options.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-metaparse │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-modular-build-helper │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Jamroot.jam.in │ │ │ │ │ ├── boost-modular-build.cmake │ │ │ │ │ ├── nothing.bat │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── user-config.jam.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-move │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-mp11 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-mpi │ │ │ │ │ ├── fix-build-boost_mpi_python-on-windows.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-mpl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-msm │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-multi-array │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-multi-index │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-multiprecision │ │ │ │ │ ├── 0001-Fix-selection-logic-in-intel_intrinsics.hpp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-nowide │ │ │ │ │ ├── b2-options.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-numeric-conversion │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-odeint │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-optional │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-outcome │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-parameter-python │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-parameter │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-pfr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-phoenix │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-poly-collection │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-polygon │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-pool │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-predef │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-preprocessor │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-process │ │ │ │ │ ├── fix_include.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-program-options │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-property-map-parallel │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-property-map │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-property-tree │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-proto │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-ptr-container │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-python │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-qvm │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-random │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-range │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-ratio │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-rational │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-regex │ │ │ │ │ ├── b2-options.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-safe-numerics │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-scope-exit │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-serialization │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-signals2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-smart-ptr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-sort │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-spirit │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-stacktrace │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-statechart │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-static-assert │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-static-string │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-stl-interfaces │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-system │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-test │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-thread │ │ │ │ │ ├── b2-options.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-throw-exception │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-timer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-tokenizer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-tti │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-tuple │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-type-erasure │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-type-index │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-type-traits │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-typeof │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-ublas │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-uninstall │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-units │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-unordered │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-utility │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-uuid │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-variant │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-variant2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-vcpkg-helpers │ │ │ │ │ ├── boost-modular-headers.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-vmd │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-wave │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-winapi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-xpressive │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost-yap │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boost │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── boringssl │ │ │ │ │ ├── 0001-vcpkg.patch │ │ │ │ │ ├── 0002-disable-waring-4065.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── botan │ │ │ │ │ ├── embed-debug-info.patch │ │ │ │ │ ├── fix-generate-build-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── box2d │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── braft │ │ │ │ │ ├── export-target.patch │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── breakpad │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── check_getcontext.cc │ │ │ │ │ ├── fix-unique_ptr.patch │ │ │ │ │ ├── fix-unordered_map.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── brigand │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-tests.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── brotli │ │ │ │ │ ├── fix-arm-uwp.patch │ │ │ │ │ ├── fix-ios.patch │ │ │ │ │ ├── install.patch │ │ │ │ │ ├── pkgconfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── brpc │ │ │ │ │ ├── fix_boost_ptr.patch │ │ │ │ │ ├── fix_thrift.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── brunocodutra-metal │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── brynet │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bshoshany-thread-pool │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bsio │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── buck-yeh-bux-mariadb-client │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── buck-yeh-bux │ │ │ │ │ ├── fix-errorC7595.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bullet3 │ │ │ │ │ ├── cmake-fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bustache │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── butteraugli │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── missing_header.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── byte-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── bzip2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bzip2.pc.in │ │ │ │ │ ├── fix-import-export-macros.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── c-ares │ │ │ │ │ ├── avoid-docs.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── c-dbg-macro │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── c4core │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── c89stringutils │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── caf │ │ │ │ │ ├── fix_dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── caffe2 │ │ │ │ │ ├── fix-protobuf-deprecated.patch │ │ │ │ │ ├── fix-space.patch │ │ │ │ │ ├── msvc-fixes.patch │ │ │ │ │ ├── no-inout-macros.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cairo │ │ │ │ │ ├── cairo_static_fix.patch │ │ │ │ │ ├── disable-atomic-ops-check.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cairomm │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── calceph │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── camport3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── capnproto │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── capstone │ │ │ │ │ ├── 001-silence-windows-crt-secure-warnings.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cargs │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cartographer │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── fix-cmake-location.patch │ │ │ │ │ ├── fix-find-packages.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── casclib │ │ │ │ │ ├── fix-shared-windows-builds.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── catch-classic │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── catch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── catch2 │ │ │ │ │ ├── fix-install-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cccapstone │ │ │ │ │ ├── fix-include-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ccd │ │ │ │ │ ├── fix-static.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── support-emscripten.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ccfits │ │ │ │ │ ├── dll_exports.patch │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cctag │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cctz │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── celero │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cello │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cereal │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ceres │ │ │ │ │ ├── 0001_cmakelists_fixes.patch │ │ │ │ │ ├── 0002_use_glog_target.patch │ │ │ │ │ ├── 0003_fix_exported_ceres_config.patch │ │ │ │ │ ├── 0004_fix_lib_path_linux.patch │ │ │ │ │ ├── find-package-required.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cfitsio │ │ │ │ │ ├── 0001-fix-dependencies.patch │ │ │ │ │ ├── 0002-export-cmake-targets.patch │ │ │ │ │ ├── 0003-add-Wno-error-implicit-funciton-declaration-to-cmake.patch │ │ │ │ │ ├── 0004-pkg-config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cgal │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cgicc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-define.patch │ │ │ │ │ ├── fix-static-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cgl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── fix-c1083-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cgltf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cgns │ │ │ │ │ ├── cgnsconfig.h │ │ │ │ │ ├── hdf5.patch │ │ │ │ │ ├── linux_lfs.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── chaiscript │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── chakracore │ │ │ │ │ ├── fix-debug-linux-build.patch │ │ │ │ │ ├── no-warning-as-error.props │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── charls │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── chartdir │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── chartdir.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── check │ │ │ │ │ ├── fix-lib-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── chipmunk │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── chmlib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── chromaprint │ │ │ │ │ ├── fix_lrintf_detection.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── chromium-base │ │ │ │ │ ├── chromium-baseConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── res │ │ │ │ │ │ ├── .gn │ │ │ │ │ │ ├── 0001-base.patch │ │ │ │ │ │ ├── 0002-build.patch │ │ │ │ │ │ ├── LASTCHANGE.committime │ │ │ │ │ │ ├── gclient_args.gni │ │ │ │ │ │ ├── icu │ │ │ │ │ │ │ └── config.gni │ │ │ │ │ │ ├── protobuf │ │ │ │ │ │ │ └── proto_library.gni │ │ │ │ │ │ ├── testing │ │ │ │ │ │ │ ├── libfuzzer │ │ │ │ │ │ │ │ └── fuzzer_test.gni │ │ │ │ │ │ │ └── test.gni │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── DebugVisualizers │ │ │ │ │ │ │ └── chrome.natvis │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cimg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cityhash │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── civetweb │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cjson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clamav │ │ │ │ │ ├── cmakefiles.patch │ │ │ │ │ ├── curl.patch │ │ │ │ │ ├── mspack.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clapack │ │ │ │ │ ├── FindLAPACK.cmake │ │ │ │ │ ├── arith_linux64.h │ │ │ │ │ ├── arith_osx.h │ │ │ │ │ ├── arith_win32.h │ │ │ │ │ ├── arith_win64.h │ │ │ │ │ ├── fix-ConfigFile.patch │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_internal_blas.patch │ │ │ │ │ ├── support-uwp.patch │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clara │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clblas │ │ │ │ │ ├── Fix-BuildDLL.patch │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clblast │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clfft │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tweak-install.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cli │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cli11 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clickhouse-cpp │ │ │ │ │ ├── fix-error-C4996.patch │ │ │ │ │ ├── fix-error-c2668.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clipp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clockutils │ │ │ │ │ ├── fix-warningC4643.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clrng │ │ │ │ │ ├── 001-build-fixup.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── clue │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cmark │ │ │ │ │ ├── add-feature-tools.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cmcstl2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cminpack │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cmocka │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cnats │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cnl │ │ │ │ │ ├── disable-test.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── co │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cocoyaxi │ │ │ │ │ ├── fix-event-destruct.patch │ │ │ │ │ ├── install-dll.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── coin │ │ │ │ │ ├── disable-cpackd.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── coinutils │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── collada-dom │ │ │ │ │ ├── fix-shared-keyword.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-uriparser.patch │ │ │ │ │ ├── use-vcpkg-minizip.patch │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vs-version-detection.patch │ │ │ │ ├── colmap │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── color-console │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── comms-ublox │ │ │ │ │ ├── fix-comms.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── comms │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── commsdsl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── compoundfilereader │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── concurrencpp │ │ │ │ │ ├── fix-include-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── concurrentqueue │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unofficial-concurrentqueue-config.in.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── console-bridge │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── constexpr-contracts │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── constexpr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── continuable │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── coolprop │ │ │ │ │ ├── fix-builderror.patch │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── fmt-fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── coroutine │ │ │ │ │ ├── add-noexcept-to-frame.patch │ │ │ │ │ ├── fix-errorC7651.patch │ │ │ │ │ ├── gsl-4_0_0.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── corrade │ │ │ │ │ ├── fix-vs2019.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-base64 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-httplib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-ipc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-jwt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-netlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── stream-handler-executor.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-peglib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-redis │ │ │ │ │ ├── fix-sleep_for.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tacopie │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-taskflow │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpp-timsort │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppad │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── windows-fix.patch │ │ │ │ ├── cppcms │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppcodec │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppcoro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppfs │ │ │ │ │ ├── LibCrypto-fix.patch │ │ │ │ │ ├── cmake-export-fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppgraphqlgen │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppitertools │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppkafka │ │ │ │ │ ├── fix-dynamic.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppmicroservices │ │ │ │ │ ├── fix-dependency-gtest.patch │ │ │ │ │ ├── fix-warning-c4834.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── werror.patch │ │ │ │ ├── cpprestsdk │ │ │ │ │ ├── fix-find-openssl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpptoml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppunit │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CppUnitConfig.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpputest │ │ │ │ │ ├── fix-arm-build-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppwinrt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppxaml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cppzmq │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpr │ │ │ │ │ ├── 001-cpr-config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpu-features │ │ │ │ │ ├── make_list_cpu_features_optional.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpuid │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cpuinfo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── crashpad │ │ │ │ │ ├── crashpadConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── zlib.gn │ │ │ │ ├── crashrpt │ │ │ │ │ ├── 001-add-install-target-and-find-deps.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── crc32c │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── crfsuite │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── croncpp │ │ │ │ │ ├── 0001-fix-cmake.patch │ │ │ │ │ ├── no-test.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── crossguid │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── warnings.patch │ │ │ │ ├── crow │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cryptopp │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── patch.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cspice │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── isatty.patch │ │ │ │ │ ├── mktemp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ctbignum │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ctemplate │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ctp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ctre │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cub │ │ │ │ │ ├── fix-usage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cuda │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vcpkg_find_cuda.cmake │ │ │ │ ├── cudnn │ │ │ │ │ ├── FindCUDNN.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cunit │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── curl │ │ │ │ │ ├── 0002_fix_uwp.patch │ │ │ │ │ ├── 0005_remove_imp_suffix.patch │ │ │ │ │ ├── 0012-fix-dependency-idn2.patch │ │ │ │ │ ├── 0020-fix-pc-file.patch │ │ │ │ │ ├── 0021-normaliz.patch │ │ │ │ │ ├── 0022-deduplicate-libs.patch │ │ │ │ │ ├── cmake-project-include.cmake │ │ │ │ │ ├── export-components.patch │ │ │ │ │ ├── mbedtls-ws2_32.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── curlpp │ │ │ │ │ ├── fix-cmake.patch │ │ │ │ │ ├── fix-findzliberror.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cute-headers │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cutelyst2 │ │ │ │ │ ├── fix-static-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cwalk │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── cxxopts │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── czmq │ │ │ │ │ ├── Findlibcurl.cmake │ │ │ │ │ ├── Findlibmicrohttpd.cmake │ │ │ │ │ ├── Findlibzmq.cmake │ │ │ │ │ ├── Findlz4.cmake │ │ │ │ │ ├── Finduuid.cmake │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── d3d12-memory-allocator │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── d3dx12 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── darknet │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── darts-clone │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dartsim │ │ │ │ │ ├── disable_unit_tests_examples_and_tutorials.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dataframe │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── date │ │ │ │ │ ├── 0001-fix-uwp.patch │ │ │ │ │ ├── 0002-fix-cmake-3.14.patch │ │ │ │ │ ├── fix-uninitialized-values.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dav1d │ │ │ │ │ ├── patch_underscore_prefix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── daw-header-libraries │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── daw-json-link │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── daw-utf-range │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dbg-macro │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dbghelp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dbow2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dbow3 │ │ │ │ │ ├── fix_cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dcmtk │ │ │ │ │ ├── dcmtk.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── debug-assert │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── decimal-for-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── detours │ │ │ │ │ ├── find-jmp-bounds-arm64.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── devicenameresolver │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── add-string-headfile.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── devil │ │ │ │ │ ├── 0001_fix-encoding.patch │ │ │ │ │ ├── 0002_fix-missing-mfc-includes.patch │ │ │ │ │ ├── 0003_fix-openexr.patch │ │ │ │ │ ├── 0004_compatible-jasper-2-0-20.patch │ │ │ │ │ ├── 0005-fix-pkgconfig.patch │ │ │ │ │ ├── 0006-fix-ilut-header.patch │ │ │ │ │ ├── enable-static.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dimcli │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── directx-headers │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── directxmath │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── directxmesh │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── directxsdk │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── directxtex │ │ │ │ │ ├── enable_openexr_support.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── directxtk │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── directxtk12 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dirent │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── discord-game-sdk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── copyright │ │ │ │ │ ├── include-cstdint.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── discord-rpc │ │ │ │ │ ├── disable-downloading.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── discordcoreapi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── discount │ │ │ │ │ ├── blocktags │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── disable-deprecated-warnings.patch │ │ │ │ │ ├── generate-blocktags-command.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── discreture │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── distorm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-arm-builds.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dlfcn-win32 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dlib │ │ │ │ │ ├── find_blas.patch │ │ │ │ │ ├── fix-sqlite3-fftw-linkage.patch │ │ │ │ │ ├── force_finding_packages.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dmlc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── docopt │ │ │ │ │ ├── 001-fix-unresolved-symbol.patch │ │ │ │ │ ├── 002-fix-install-path.patch │ │ │ │ │ ├── install-one-flavor.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── doctest │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── double-conversion │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dpdk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FindNuma.cmake │ │ │ │ │ ├── dpdkConfig.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── draco │ │ │ │ │ ├── disable-symlinks.patch │ │ │ │ │ ├── fix-compile-error-uwp.patch │ │ │ │ │ ├── fix-uwperror.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── drlibs │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── drogon │ │ │ │ │ ├── drogon_config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── static-brotli.patch │ │ │ │ │ ├── usage │ │ │ │ │ ├── use-libmariadb.patch │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vcpkg.patch │ │ │ │ ├── dstorage │ │ │ │ │ ├── dstorage-config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dtl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── duckx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── duilib │ │ │ │ │ ├── enable-static.patch │ │ │ │ │ ├── enable-unicode-for-vcpkg.patch │ │ │ │ │ ├── fix-arm-build.patch │ │ │ │ │ ├── fix-encoding.patch │ │ │ │ │ ├── fix-post-build-errors.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── duktape │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── duktapeConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dxsdk-d3dx │ │ │ │ │ ├── dxsdk-d3dx-config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── dxut │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── eabase │ │ │ │ │ ├── EABaseConfig.cmake.in │ │ │ │ │ ├── fix_cmake_install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── earcut-hpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── eastl │ │ │ │ │ ├── EASTLConfig.cmake.in │ │ │ │ │ ├── Fix-error-C2338.patch │ │ │ │ │ ├── fix_cmake_install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── easycl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── easyhook │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── easyloggingpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── eathread │ │ │ │ │ ├── EAThreadConfig.cmake.in │ │ │ │ │ ├── fix_cmake_install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ebml │ │ │ │ │ ├── include-limits.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ecm │ │ │ │ │ ├── fix_canberra.patch │ │ │ │ │ ├── fix_generateqmltypes.patch │ │ │ │ │ ├── fix_libmount.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ecos │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ecsutil │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── edlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── effects11 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── effolkronium-random │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── efsw │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── egl-registry │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── eigen3 │ │ │ │ │ ├── fix-vectorized-reductions-half.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_configure_checks.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── elfio │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── elfutils │ │ │ │ │ ├── configure.ac.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── embree2 │ │ │ │ │ ├── cmake_policy.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── embree3 │ │ │ │ │ ├── cmake_policy.patch │ │ │ │ │ ├── fix-path.patch │ │ │ │ │ ├── fix-static-usage.patch │ │ │ │ │ ├── fix-targets-file-not-found.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── enet │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ensmallen │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── entityx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── entt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── epsilon │ │ │ │ │ ├── 0001-VS2015-provides-snprintf.patch │ │ │ │ │ ├── 0002-Add-CFLAGS-for-CRT-selection-and-warning-supression.patch │ │ │ │ │ ├── 0003-Fix-build-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── esaxx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── eve │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── eventpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── evpp │ │ │ │ │ ├── fix-linux-build.patch │ │ │ │ │ ├── fix-osx-build.patch │ │ │ │ │ ├── fix-rapidjson-1-1.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── exiv2 │ │ │ │ │ ├── fix-find_expat.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── expat │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── expected-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── exprtk │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ezc3d │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── faad2 │ │ │ │ │ ├── 0001-Fix-non-x86-msvc.patch │ │ │ │ │ ├── 0002-Fix-unary-minus.patch │ │ │ │ │ ├── 0003-Initialize-pointers.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fadbad │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── faiss │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fakeit │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fann │ │ │ │ │ ├── fix-installation.patch │ │ │ │ │ ├── fix-uwp-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── farmhash │ │ │ │ │ ├── farmhashConfig.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fast-cpp-csv-parser │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fast-float │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fastcdr │ │ │ │ │ ├── install-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fastcgi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fastfeat │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fastfeat.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fastlz │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fastor │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fastrtps │ │ │ │ │ ├── disable-symlink.patch │ │ │ │ │ ├── fix-find-package-asio.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fbgemm │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fbthrift │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fcl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fdk-aac │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fdlibm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── libm5.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ffmpeg │ │ │ │ │ ├── 0001-create-lib-libraries.patch │ │ │ │ │ ├── 0003-fix-windowsinclude.patch │ │ │ │ │ ├── 0004-fix-debug-build.patch │ │ │ │ │ ├── 0006-fix-StaticFeatures.patch │ │ │ │ │ ├── 0007-fix-lib-naming.patch │ │ │ │ │ ├── 0009-Fix-fdk-detection.patch │ │ │ │ │ ├── 0010-Fix-x264-detection.patch │ │ │ │ │ ├── 0011-Fix-x265-detection.patch │ │ │ │ │ ├── 0012-Fix-ssl-110-detection.patch │ │ │ │ │ ├── 0013-define-WINVER.patch │ │ │ │ │ ├── 0014-avfilter-dependency-fix.patch │ │ │ │ │ ├── 0015-Fix-xml2-detection.patch │ │ │ │ │ ├── 0016-configure-dnn-needs-avformat.patch │ │ │ │ │ ├── 0017-Patch-for-ticket-9019-CUDA-Compile-Broken-Using-MSVC.patch │ │ │ │ │ ├── 0018-libaom-Dont-use-aom_codec_av1_dx_algo.patch │ │ │ │ │ ├── 0019-libx264-Do-not-explicitly-set-X264_API_IMPORTS.patch │ │ │ │ │ ├── FindFFMPEG.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ffnvcodec │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fftw3 │ │ │ │ │ ├── aligned_malloc.patch │ │ │ │ │ ├── fftw3_arch_fix.patch │ │ │ │ │ ├── omp_test.patch │ │ │ │ │ ├── patch_targets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fftwpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fixed-string │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fizz │ │ │ │ │ ├── 0001-fix-libsodium.patch │ │ │ │ │ ├── 0002-fix-libevent.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── flann │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── fix-dependency-hdf5.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── flash-runtime-extensions │ │ │ │ │ ├── README.md │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── flashlight-cpu │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── flashlight-cuda │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── flatbuffers │ │ │ │ │ ├── fix-uwp-build.patch │ │ │ │ │ ├── ignore_use_of_cmake_toolchain_file.patch │ │ │ │ │ ├── no-werror.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── flint │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fltk │ │ │ │ │ ├── config-path.patch │ │ │ │ │ ├── findlibsfix.patch │ │ │ │ │ ├── fix-system-link.patch │ │ │ │ │ ├── include.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fluidlite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fluidsynth │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── separate-gentables.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fmem │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fmi4cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fmilib │ │ │ │ │ ├── 0001-remove-install-prefix.patch │ │ │ │ │ ├── 0002-include-sys-stat.h-for-mkdir.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fmt │ │ │ │ │ ├── fix-invalid-command.patch │ │ │ │ │ ├── fix-write-batch.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── folly │ │ │ │ │ ├── FindLZ4.cmake │ │ │ │ │ ├── FindSnappy.cmake │ │ │ │ │ ├── boost-1.70.patch │ │ │ │ │ ├── disable-non-underscore-posix-names.patch │ │ │ │ │ ├── fix-windows-minmax.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── reorder-glog-gflags.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── font-chef │ │ │ │ │ ├── disable-warnings-as-errors.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fontconfig │ │ │ │ │ ├── no-etc-symlinks.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── foonathan-memory │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── forge │ │ │ │ │ ├── cmake_config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── foxi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-test-targets.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fp16 │ │ │ │ │ ├── find-psimd.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fplus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── freealut │ │ │ │ │ ├── cmake_builds.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unix_headers.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── freeglut │ │ │ │ │ ├── fix-debug-macro.patch │ │ │ │ │ ├── macOS_Xquartz.patch │ │ │ │ │ ├── no_x64_enforcement.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ ├── windows-static-output-name.patch │ │ │ │ │ └── x11-dependencies-export.patch │ │ │ │ ├── freeimage │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FreeImageConfig-dynamic.h │ │ │ │ │ ├── FreeImageConfig-static.h │ │ │ │ │ ├── disable-plugins-depending-on-internal-third-party-libraries.patch │ │ │ │ │ ├── fix-function-overload.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-external-jpeg.patch │ │ │ │ │ ├── use-external-jxrlib.patch │ │ │ │ │ ├── use-external-libtiff.patch │ │ │ │ │ ├── use-external-openexr.patch │ │ │ │ │ ├── use-external-openjpeg.patch │ │ │ │ │ ├── use-external-png-zlib.patch │ │ │ │ │ ├── use-external-rawlib.patch │ │ │ │ │ ├── use-external-webp.patch │ │ │ │ │ ├── use-freeimage-config-include.patch │ │ │ │ │ ├── use-functions-to-override-libtiff-warning-error-handlers.patch │ │ │ │ │ ├── use-typedef-as-already-declared.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── freeopcua │ │ │ │ │ ├── boost-1.70.patch │ │ │ │ │ ├── cmakelists_fixes.patch │ │ │ │ │ ├── fix-std-headers.patch │ │ │ │ │ ├── improve_compatibility_with_recent_boost.patch │ │ │ │ │ ├── include_asio_first.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── serverObj.patch │ │ │ │ │ ├── uri_facade_win.patch │ │ │ │ │ ├── use_another_implementation_of_has_begin_end.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── freerdp │ │ │ │ │ ├── DontInstallSystemRuntimeLibs.patch │ │ │ │ │ ├── fix-include-path.patch │ │ │ │ │ ├── fix-libusb.patch │ │ │ │ │ ├── fix-linux-build.patch │ │ │ │ │ ├── install-dirs.patch │ │ │ │ │ ├── openssl_threads.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── freetds │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── freetype-gl │ │ │ │ │ ├── glew.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── freetype │ │ │ │ │ ├── 0003-Fix-UWP.patch │ │ │ │ │ ├── brotli-static.patch │ │ │ │ │ ├── fix-bzip2-pc.patch │ │ │ │ │ ├── fix-exports.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── freexl │ │ │ │ │ ├── fix-makefiles.patch │ │ │ │ │ ├── fix-pc-file.patch │ │ │ │ │ ├── fix-sources.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fribidi │ │ │ │ │ ├── meson-crosscompile.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── frozen │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── frugally-deep │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fruit │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ftgl │ │ │ │ │ ├── 01_disable_doxygen.patch │ │ │ │ │ ├── 02_enable-cpp11-std.patch │ │ │ │ │ ├── Fix-headersFilePath.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ftxui │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── function2 │ │ │ │ │ ├── disable-testing.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── functions-framework-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fuzzylite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── fxdiv │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── g2o │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── g3log │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gainput │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── install_as_cmake_package.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gamedev-framework │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gamenetworkingsockets │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gamma │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gasol │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── gasol.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gaussianlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gazebo │ │ │ │ │ ├── 0001-Fix-deps.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gcem │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gdal │ │ │ │ │ ├── 0001-Fix-debug-crt-flags.patch │ │ │ │ │ ├── 0002-Fix-build.patch │ │ │ │ │ ├── 0004-Fix-cfitsio.patch │ │ │ │ │ ├── 0005-Fix-configure.patch │ │ │ │ │ ├── 0006-Fix-mingw-dllexport.patch │ │ │ │ │ ├── 0007-Control-tools.patch │ │ │ │ │ ├── 0008-Fix-absl-string_view.patch │ │ │ │ │ ├── 0009-atlbase.patch │ │ │ │ │ ├── 0010-symprefix.patch │ │ │ │ │ ├── dependency_win.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gdcm │ │ │ │ │ ├── Fix-Cmake_DIR.patch │ │ │ │ │ ├── fix-share-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-openjpeg-config.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gdcm2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gdk-pixbuf │ │ │ │ │ ├── fix_build.patch │ │ │ │ │ ├── fix_build_error_windows.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gemmlowp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── genann │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── geogram │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── fix-vcpkg-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── geographiclib │ │ │ │ │ ├── cxx-library-only.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── geos │ │ │ │ │ ├── disable-warning-4996.patch │ │ │ │ │ ├── fix-exported-config.patch │ │ │ │ │ ├── install-hpp-files.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── geotrans │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── geotrans-config.in.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── getdns │ │ │ │ │ ├── disable-docs.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── getopt-win32 │ │ │ │ │ ├── getopt.h.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── getopt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gettext │ │ │ │ │ ├── 0002-Fix-uwp-build.patch │ │ │ │ │ ├── 0003-Fix-win-unicode-paths.patch │ │ │ │ │ ├── 0004-Fix-uwp-tools-build.patch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── android.patch │ │ │ │ │ ├── gettext-tools_woe32dll_gettextsrc-exports.c.patch │ │ │ │ │ ├── install-autopoint.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── rel_path.patch │ │ │ │ │ ├── uwp_remove_localcharset.patch │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ ├── vcpkg-port-config.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gettimeofday │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── gettimeofday.c │ │ │ │ │ ├── gettimeofday.def │ │ │ │ │ ├── gettimeofday.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gflags │ │ │ │ │ ├── 0001-patch-dir.patch │ │ │ │ │ ├── fix_cmake_config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ghc-filesystem │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gherkin-c │ │ │ │ │ ├── fix-include-path.patch │ │ │ │ │ ├── fix-install-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── giflib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── disable-GifDrawBoxedText8x8-win32.patch │ │ │ │ │ ├── exports.def │ │ │ │ │ ├── fix-compile-error.patch │ │ │ │ │ ├── msvc-guard-unistd-h.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ginkgo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gl2ps │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── separate-static-dynamic-build.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gl3w │ │ │ │ │ ├── 0001-enable-shared-build.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glad │ │ │ │ │ ├── encoding.patch │ │ │ │ │ ├── find_python.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glbinding │ │ │ │ │ ├── 0001_force-system-install.patch │ │ │ │ │ ├── 0002_fix-uwpmacro.patch │ │ │ │ │ ├── 0003_fix-cmake-configs-paths.patch │ │ │ │ │ ├── 0004_fix-config-expected-paths.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glew │ │ │ │ │ ├── fix-LNK2019.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glfw3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gli │ │ │ │ │ ├── disable-test.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glib │ │ │ │ │ ├── libintl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-libiconv-on-windows.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glibmm │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── globjects │ │ │ │ │ ├── fix-dependency-glm.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── system-install.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glog │ │ │ │ │ ├── fix_glog_CMAKE_MODULE_PATH.patch │ │ │ │ │ ├── fix_log_every_n.patch │ │ │ │ │ ├── glog_disable_debug_postfix.patch │ │ │ │ │ ├── nogdi-nominmax.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gloo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glslang │ │ │ │ │ ├── always-install-resource-limits.patch │ │ │ │ │ ├── glslang-config.cmake │ │ │ │ │ ├── ignore-crt.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── glui │ │ │ │ │ ├── install-one-flavor.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gmime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gmmlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gmp │ │ │ │ │ ├── msvc_symbol.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tools.patch │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── yasm.patch │ │ │ │ ├── gmsh │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gobject-introspection │ │ │ │ │ ├── 0001-g-ir-tool-template.in.patch │ │ │ │ │ ├── 0002-cross-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── google-cloud-cpp-common │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── google-cloud-cpp-spanner │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── google-cloud-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── support_absl_cxx17.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── googleapis │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gperf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gperftools │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gpgme │ │ │ │ │ ├── disable-docs.patch │ │ │ │ │ ├── disable-tests.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gppanel │ │ │ │ │ ├── 00001-fix-build.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── graphene │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── graphicsmagick │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── disable_graphicsmagick_modules.patch │ │ │ │ │ ├── dynamic_bzip2.patch │ │ │ │ │ ├── magick_types.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── graphite2 │ │ │ │ │ ├── disable-tests.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── graphqlparser │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-invalid-bison-directive.patch │ │ │ │ │ ├── static-compile-fix.patch │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── win-cmake.patch │ │ │ │ ├── graphviz │ │ │ │ │ ├── 0001-Fix-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── greatest │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── grpc │ │ │ │ │ ├── 00001-fix-uwp.patch │ │ │ │ │ ├── 00002-static-linking-in-linux.patch │ │ │ │ │ ├── 00003-undef-base64-macro.patch │ │ │ │ │ ├── 00004-link-gdi32-on-windows.patch │ │ │ │ │ ├── 00005-fix-uwp-error.patch │ │ │ │ │ ├── 00006-fix-uwp-error.patch │ │ │ │ │ ├── 00009-use-system-upb.patch │ │ │ │ │ ├── 00010-add-feature-absl-sync.patch │ │ │ │ │ ├── 00011-fix-csharp_plugin.patch │ │ │ │ │ ├── 00012-fix-use-cxx17.patch │ │ │ │ │ ├── 00013-build-upbdefs.patch │ │ │ │ │ ├── 00014-pkgconfig-upbdefs.patch │ │ │ │ │ ├── gRPCTargets-vcpkg-tools.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── snprintf.patch │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── grppi │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── fix-support-other-compilers.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gsl-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gsl │ │ │ │ │ ├── 0001-configure.patch │ │ │ │ │ ├── 0002-add-fp-control.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gsoap │ │ │ │ │ ├── fix-build-in-windows.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gst-rtsp-server │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gstreamer │ │ │ │ │ ├── gstreamer-disable-hot-doc.patch │ │ │ │ │ ├── gstreamer-disable-no-unused.patch │ │ │ │ │ ├── plugin-base-disable-no-unused.patch │ │ │ │ │ ├── plugins-base-use-zlib.patch │ │ │ │ │ ├── plugins-good-use-zlib.patch │ │ │ │ │ ├── plugins-ugly-disable-doc.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gtest │ │ │ │ │ ├── clang-tidy-no-lint.patch │ │ │ │ │ ├── fix-main-lib-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-werror.patch │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gtk │ │ │ │ │ ├── 0001-build.patch │ │ │ │ │ ├── 0002-windows-build.patch │ │ │ │ │ ├── 0004-macos-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gtkmm │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gtl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gts │ │ │ │ │ ├── fix-M_PI-in-windows.patch │ │ │ │ │ ├── fix-pkgconfig.patch │ │ │ │ │ ├── glib2.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── support-unix.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── guetzli │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── butteraugli.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── guilite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gumbo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── gzip-hpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── h3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── h5py-lzf │ │ │ │ │ ├── 0001-disable-H5PLget_plugin-api.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── halide │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── happly │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── harfbuzz │ │ │ │ │ ├── 0001-circumvent-samefile-error.patch │ │ │ │ │ ├── 0002-fix-uwp-build.patch │ │ │ │ │ ├── fix-macos-build.diff │ │ │ │ │ ├── harfbuzzConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hayai │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hazelcast-cpp-client │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hdf5 │ │ │ │ │ ├── hdf5_config.patch │ │ │ │ │ ├── pkgconfig-link-order.patch │ │ │ │ │ ├── pkgconfig-requires.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── szip.patch │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── healpix │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hedley │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hexl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hffix │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hfsm2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hidapi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── highfive │ │ │ │ │ ├── fix-dependency-hdf5.patch │ │ │ │ │ ├── fix-error-C1128.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── highway │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hiredis │ │ │ │ │ ├── fix-feature-example.patch │ │ │ │ │ ├── fix-include-path.patch │ │ │ │ │ ├── fix-ssize_t.patch │ │ │ │ │ ├── fix-timeval.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── support-static.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hps │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hpx │ │ │ │ │ ├── fix-cmakecache-paths.patch │ │ │ │ │ ├── fix-dependency-hwloc.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── http-parser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hungarian │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hunspell │ │ │ │ │ ├── 0001_fix_unistd.patch │ │ │ │ │ ├── 0002-disable-test.patch │ │ │ │ │ ├── 0003-fix-win-build.patch │ │ │ │ │ ├── 0004-add-win-arm64.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hwloc │ │ │ │ │ ├── fix_shared_win_build.patch │ │ │ │ │ ├── fix_wrong_ifdef.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hyperscan │ │ │ │ │ ├── 0001-remove-Werror.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hypodermic │ │ │ │ │ ├── disable_hypodermic_tests.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── hypre │ │ │ │ │ ├── fix-dll-install-destination.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── icu │ │ │ │ │ ├── disable-escapestr-tool.patch │ │ │ │ │ ├── disable-static-prefix.patch │ │ │ │ │ ├── fix-extra.patch │ │ │ │ │ ├── fix-win-build.patch │ │ │ │ │ ├── fix_parallel_build_on_windows.patch │ │ │ │ │ ├── mingw-dll-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-MD-from-configure.patch │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ideviceinstaller │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── idevicerestore │ │ │ │ │ ├── fix-libgen.h-cannot-be-found.patch │ │ │ │ │ ├── fix-vcxproj.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── if97 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── igloo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-cmake0 │ │ │ │ │ ├── do-not-compile-gtest.patch │ │ │ │ │ ├── fix-find-ign-curl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── support-arm64.patch │ │ │ │ │ ├── usage │ │ │ │ │ ├── uuid-do-not-require-pkg-config.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-cmake2 │ │ │ │ │ ├── FindGTS.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-common1 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-common3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-fuel-tools1 │ │ │ │ │ ├── link-correct-yaml-target.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-fuel-tools4 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-math4 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-math6 │ │ │ │ │ ├── fix-isspace.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-modularscripts │ │ │ │ │ ├── ignition_modular_library.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-msgs1 │ │ │ │ │ ├── fix-protobuf-static-link-order.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-msgs5 │ │ │ │ │ ├── 01-protobuf.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-msgs6 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-plugin1 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-transport4 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uuid-osx.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-transport8 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ignition-transport9 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uuid-osx.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── igraph │ │ │ │ │ ├── arith_osx.h │ │ │ │ │ ├── arith_win32.h │ │ │ │ │ ├── arith_win64.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── iir1 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ijg-libjpeg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ilmbase │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── imath │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── imgui-sfml │ │ │ │ │ ├── 0001-fix_find_package.patch │ │ │ │ │ ├── 004-fix-find-sfml.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── imgui │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── imgui-config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── imguizmo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── immer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── implot │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── indicators │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── influxdb-cxx │ │ │ │ │ ├── include-stringview.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── infoware │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── inih │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── iniparser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── win32_ssize_t.patch │ │ │ │ ├── inja │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── intel-ipsec │ │ │ │ │ ├── always-generate-pdb.patch │ │ │ │ │ ├── intel-ipsec-targets-implib.cmake.in │ │ │ │ │ ├── intel-ipsec-targets.cmake.in │ │ │ │ │ ├── intel-ipsecConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── intel-mkl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── intelrdfpmathlib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── io2d │ │ │ │ │ ├── cmake.dep.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── irrlicht │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── fix-encoding.patch │ │ │ │ │ ├── fix-osx-compilation.patch │ │ │ │ │ ├── fix-sysctl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── irrxml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── isal │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── isalConfig.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ismrmrd │ │ │ │ │ ├── fix-depends-hdf5.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── x86-windows-include-stddef.patch │ │ │ │ ├── itk │ │ │ │ │ ├── double-conversion.patch │ │ │ │ │ ├── opencl.patch │ │ │ │ │ ├── openjpeg.patch │ │ │ │ │ ├── openjpeg2.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── rtk │ │ │ │ │ │ ├── already_defined.patch │ │ │ │ │ │ └── unresolved.patch │ │ │ │ │ ├── use-the-lrintf-intrinsic.patch │ │ │ │ │ ├── var_libraries.patch │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── wrapping.patch │ │ │ │ ├── itpp │ │ │ │ │ ├── fix-linux.patch │ │ │ │ │ ├── fix-uwp.patch │ │ │ │ │ ├── msvc2013.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── rename-version.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ixwebsocket │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jack2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── jack.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jaeger-client-cpp │ │ │ │ │ ├── fix-CMakeLists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jansson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jasper │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jbig2dec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jbigkit │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jemalloc │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── fix-static-build.patch │ │ │ │ │ ├── fix-utilities.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jinja2cpplight │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── josuttis-jthread │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jsmn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── json-c │ │ │ │ │ ├── pkgconfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── json-dto │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── json-schema-validator │ │ │ │ │ ├── cmake-find-package.patch │ │ │ │ │ ├── fix-ambiguous-assignment.patch │ │ │ │ │ ├── forward-find-package.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── json-spirit │ │ │ │ │ ├── Fix-link-error-C1128.patch │ │ │ │ │ ├── dll-wins.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── json11 │ │ │ │ │ ├── destination.patch │ │ │ │ │ ├── json11-config.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── json5-parser │ │ │ │ │ ├── 00001-fix-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jsoncons │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jsoncpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jsonnet │ │ │ │ │ ├── 0003-use-upstream-nlohmann-json.patch │ │ │ │ │ ├── 0004-incorporate-md5.patch │ │ │ │ │ ├── 001-enable-msvc.patch │ │ │ │ │ ├── 002-fix-dependency-and-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jwt-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── jxrlib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FindJXR.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kangaru │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kcp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kd-soap │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kdbindings │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kddockwidgets │ │ │ │ │ ├── fix_find_package.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kealib │ │ │ │ │ ├── hdf5_include.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kenlm │ │ │ │ │ ├── fix-boost.patch │ │ │ │ │ ├── fix-const-overloaded.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── keystone │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5archive │ │ │ │ │ ├── control-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5attica │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5auth │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5bookmarks │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5codecs │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5completion │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5config │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5configwidgets │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5coreaddons │ │ │ │ │ ├── fix_cmake_config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5crash │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5dbusaddons │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5declarative │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5diagram │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5globalaccel │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5guiaddons │ │ │ │ │ ├── fix_cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5holidays │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5i18n │ │ │ │ │ ├── fix_static_builds.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5iconthemes │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5itemmodels │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5itemviews │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5jobwidgets │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5kcmutils │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5kio │ │ │ │ │ ├── fix_libiconv.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5newstuff │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5notifications │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5package │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5plotting │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5service │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5solid │ │ │ │ │ ├── fix-libmount.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5sonnet │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5syntaxhighlighting │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5textwidgets │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5wallet │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5widgetsaddons │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5windowsystem │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kf5xmlgui │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kfr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kinectsdk1 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kinectsdk2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kissfft │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── exports.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── klein │ │ │ │ │ ├── find_simde_first.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── knet │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── krabsetw │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ktx │ │ │ │ │ ├── 0001-Use-vcpkg-zstd.patch │ │ │ │ │ ├── 0002-Fix-versioning.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kubazip │ │ │ │ │ ├── fix_targets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kubernetes │ │ │ │ │ ├── 001-fix-destination.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kuku │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kvasir-mpl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── kwsys │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lager │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lapack-reference │ │ │ │ │ ├── FindLAPACK.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lapack │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lastools │ │ │ │ │ ├── fix_install_paths_lastools.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── laszip │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── launch-darkly-server │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lazy-importer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lcm │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── glib.link.patch │ │ │ │ │ ├── only-install-one-flavor.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lcms │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_library_directive.patch │ │ │ │ │ ├── shared.patch │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── leaf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lemon │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── leptonica │ │ │ │ │ ├── fix-CMakeDependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lerc │ │ │ │ │ ├── create_package.patch │ │ │ │ │ ├── enable_static_build.patch │ │ │ │ │ ├── install_lib_to_archive_path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lest │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── leveldb │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix_config.patch │ │ │ │ │ ├── leveldbConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── levmar │ │ │ │ │ ├── add-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libaaplus │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libaiff │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── allow_utf_16_filename.patch │ │ │ │ │ ├── buffer_uninitialized.patch │ │ │ │ │ ├── config.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libalkimia │ │ │ │ │ ├── dll_names.diff │ │ │ │ │ ├── fix_explicit_shared_lib.diff │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libao │ │ │ │ │ ├── 0001-windows-build-patch.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libarchive │ │ │ │ │ ├── disable-warnings.patch │ │ │ │ │ ├── fix-buildsystem.patch │ │ │ │ │ ├── fix-cpu-set.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── pkgconfig-modules.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libass │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── libass.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libassuan │ │ │ │ │ ├── fix-flags.patch │ │ │ │ │ ├── fix-pkgconfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libatomic-ops │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libavif │ │ │ │ │ ├── disable-source-utf8.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libb2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libbacktrace │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libbf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libbson │ │ │ │ │ ├── disable-source-write.patch │ │ │ │ │ ├── fix-include-directory.patch │ │ │ │ │ ├── fix-static-cmake-2.patch │ │ │ │ │ ├── fix-static-cmake.patch │ │ │ │ │ ├── fix-uwp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcanberra │ │ │ │ │ ├── 03_onlyshowin_unity.patch │ │ │ │ │ ├── gtk_dont_assume_x11.patch │ │ │ │ │ ├── macos_fix.patch │ │ │ │ │ ├── pkgconfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── undefined_reference.diff │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcbor │ │ │ │ │ ├── LibCborConfig.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcds │ │ │ │ │ ├── 001-cmake-install.patch │ │ │ │ │ ├── 002-lib-suffix-option.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcerf │ │ │ │ │ ├── 001-fix-static-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libconfig │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libconfuse │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcopp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcpplocate │ │ │ │ │ ├── fix-install-paths.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcrafter │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcroco │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcuckoo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libcurl-simple-https │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libdatachannel │ │ │ │ │ ├── 0001-fix-for-vcpkg.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uwp-warnings.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libdatrie │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h.cmake │ │ │ │ │ ├── fix-exports.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libdc1394 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libde265 │ │ │ │ │ ├── fix-libde265-headers.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libdisasm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── sizeofvoid.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libdivide │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libdjinterop │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libdshowcapture │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libe57 │ │ │ │ │ ├── 0001_cmake.patch │ │ │ │ │ ├── 0002_replace_tr1_with_cpp11.patch │ │ │ │ │ ├── 0003_fix_osx_support.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libe57format │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libebur128 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libepoxy │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libevent │ │ │ │ │ ├── fix-LibeventConfig_cmake_in_path.patch │ │ │ │ │ ├── fix-file_path.patch │ │ │ │ │ ├── fix-usage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libevhtp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libexif │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── add-missing-_stdint-h.patch │ │ │ │ │ ├── config.h.cmake │ │ │ │ │ ├── libexif.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libfabric │ │ │ │ │ ├── add_additional_includes.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libffi │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fficonfig.h │ │ │ │ │ ├── libffiConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libfido2 │ │ │ │ │ ├── fix_cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libflac │ │ │ │ │ ├── fix-compile-options.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uwp-createfile2.patch │ │ │ │ │ ├── uwp-library-console.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libfort │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libfreenect2 │ │ │ │ │ ├── fix-dependency-libusb.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libftdi │ │ │ │ │ ├── dont_use_lib64.patch │ │ │ │ │ ├── exports.def │ │ │ │ │ ├── libusb-win32.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── shared-static.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libftdi1 │ │ │ │ │ ├── exports.def │ │ │ │ │ ├── libconfuse-fix.patch │ │ │ │ │ ├── libusb-fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── win32.patch │ │ │ │ ├── libgcrypt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgd │ │ │ │ │ ├── 0001-fix-cmake.patch │ │ │ │ │ ├── fix_msvc_build.patch │ │ │ │ │ ├── intrin.patch │ │ │ │ │ ├── no-write-source-dir.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgeotiff │ │ │ │ │ ├── cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── skip-doc-install.patch │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgit2 │ │ │ │ │ ├── fix-configcmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgnutls │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgo │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgpg-error │ │ │ │ │ ├── add_cflags_to_tools.patch │ │ │ │ │ ├── outdir.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── runtime.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgpiod │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgpod │ │ │ │ │ ├── configure.ac.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgta │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libguarded │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgwenhywfar │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libgxps │ │ │ │ │ ├── libgxps-0.3.2_fix_meson_warnings.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libharu │ │ │ │ │ ├── add-boolean-typedef.patch │ │ │ │ │ ├── fix-build-fail.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tiff.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libhdfs3 │ │ │ │ │ ├── libhdfs3Config.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libheif │ │ │ │ │ ├── gdk-pixbuf.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libhsplasma │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libhv │ │ │ │ │ ├── fix-find_package.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libhydrogen │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libical │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libiconv │ │ │ │ │ ├── 0002-Config-for-MSVC.patch │ │ │ │ │ ├── 0003-Add-export.patch │ │ │ │ │ ├── 0004-ModuleFileName.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libics │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libideviceactivation │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libidn2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── string.h │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libigl │ │ │ │ │ ├── fix-config.patch │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── install-extra-headers.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libilbc │ │ │ │ │ ├── do-not-build-ilbc_test.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libimobiledevice │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libirecovery │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libjpeg-turbo │ │ │ │ │ ├── add-options-for-exes-docs-headers.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── workaround_cmake_system_processor.patch │ │ │ │ ├── libjuice │ │ │ │ │ ├── fix-for-vcpkg.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libjxl │ │ │ │ │ ├── disable-jxl_extras.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix-install-directories.patch │ │ │ │ │ ├── fix-link-flags.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libkeyfinder │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libkml │ │ │ │ │ ├── patch_empty_literal_on_vc.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── liblas │ │ │ │ │ ├── fix-boost-headers.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── liblbfgs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── liblemon │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── fixup-targets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── liblinear │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── liblo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── liblsl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-find-package-asio.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── liblzma │ │ │ │ │ ├── add_support_ios.patch │ │ │ │ │ ├── enable-uwp-builds.patch │ │ │ │ │ ├── fix_config_include.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── win_output_name.patch │ │ │ │ ├── libmad │ │ │ │ │ ├── 0001-Fix-MSVC-ARM.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmagic │ │ │ │ │ ├── 0001-Use-libtre.patch │ │ │ │ │ ├── 0002-Change-zlib-lib-name-to-match-CMake-output.patch │ │ │ │ │ ├── 0003-Fix-WIN32-macro-checks.patch │ │ │ │ │ ├── 0004-Typedef-POSIX-types-on-Windows.patch │ │ │ │ │ ├── 0005-Include-dirent.h-for-S_ISREG-and-S_ISDIR.patch │ │ │ │ │ ├── 0006-Remove-Wrap-POSIX-headers.patch │ │ │ │ │ ├── 0007-Substitute-unistd-macros-for-MSVC.patch │ │ │ │ │ ├── 0008-Add-FILENO-defines.patch │ │ │ │ │ ├── 0009-No-fcntl-in-magic.c.patch │ │ │ │ │ ├── 0010-Properly-check-for-the-presence-of-bitmasks.patch │ │ │ │ │ ├── 0011-Remove-pipe-related-functions-in-funcs.c.patch │ │ │ │ │ ├── 0012-Convert-MSYS2-paths-to-Windows-paths.patch │ │ │ │ │ ├── 0013-Check-for-backslash-in-argv-0-on-Windows.patch │ │ │ │ │ ├── 0014-Define-POSIX-macros-if-missing.patch │ │ │ │ │ ├── 0015-MSYS2-Remove-ioctl-call.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmariadb │ │ │ │ │ ├── arm64.patch │ │ │ │ │ ├── disable-test-build.patch │ │ │ │ │ ├── export-cmake-targets.patch │ │ │ │ │ ├── fix-InstallPath.patch │ │ │ │ │ ├── fix-iconv.patch │ │ │ │ │ ├── fix-openssl.patch │ │ │ │ │ ├── md.patch │ │ │ │ │ ├── no-extra-static-lib.patch │ │ │ │ │ ├── pkgconfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmaxminddb │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-linux-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmediainfo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vcpkg_support_in_cmakelists.patch │ │ │ │ ├── libmesh │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmicrohttpd │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmikmod │ │ │ │ │ ├── fix-missing-dll.patch │ │ │ │ │ ├── name_conflict.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmodbus │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h.cmake │ │ │ │ │ ├── fix-static-linkage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmodman │ │ │ │ │ ├── fix-install-path.patch │ │ │ │ │ ├── fix-undefined-typeid.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmodplug │ │ │ │ │ ├── 001-automagically-define-modplug-static.patch │ │ │ │ │ ├── 002-detect_sinf.patch │ │ │ │ │ ├── 003-use-static-cast-for-ctype.patch │ │ │ │ │ ├── 004-export-pkgconfig.patch │ │ │ │ │ ├── 005-fix-install-paths.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmorton │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmount │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmpeg2 │ │ │ │ │ ├── 0001-Add-naive-MSVC-support-to-sources.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmspack │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h │ │ │ │ │ ├── libmspack.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmt32emu │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmupdf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dont-generate-extract-3rd-party-things.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-if-instead-of-ifdef-in-writer.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libmysql │ │ │ │ │ ├── 004-added-limits-include.patch │ │ │ │ │ ├── export-cmake-targets.patch │ │ │ │ │ ├── ignore-boost-version.patch │ │ │ │ │ ├── openssl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── rename-version.patch │ │ │ │ │ ├── system-libs.patch │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libnice │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libnoise │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libnop │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libodb-boost │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.unix.h.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libodb-mysql │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── adapter_mysql_8.0.patch │ │ │ │ │ ├── config.unix.h.in │ │ │ │ │ ├── fix-redefinttion.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libodb-pgsql │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.unix.h.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libodb-sqlite │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.unix.h.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libodb │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.unix.h.in │ │ │ │ │ ├── odbConfig.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libogg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libopenmpt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libopensp │ │ │ │ │ ├── opensp_1.5.2-13.diff │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uwp_getenv_fix.diff │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── windows_cmake_build.diff │ │ │ │ ├── libopusenc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libosip2 │ │ │ │ │ ├── fix-path-in-project.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libosmium │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libosmscout │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libp7-baical │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libp7client │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libpcap │ │ │ │ │ ├── add-disable-packet-option.patch │ │ │ │ │ ├── install-pc-on-msvc.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libpff │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libplist │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dllexport.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libpmemobj-cpp │ │ │ │ │ ├── fixlibpmemobj-cpp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libpng │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── fix-export-targets.patch │ │ │ │ │ ├── macos-arch-fix.patch │ │ │ │ │ ├── pkgconfig.2.patch │ │ │ │ │ ├── pkgconfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use_abort.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libpopt │ │ │ │ │ ├── 0004-vcpkg-fixmsvc.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h.cmake │ │ │ │ │ ├── popt.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libpq │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config.pl │ │ │ │ │ ├── patches │ │ │ │ │ │ ├── fix-configure.patch │ │ │ │ │ │ ├── linux │ │ │ │ │ │ │ └── configure.patch │ │ │ │ │ │ ├── mingw │ │ │ │ │ │ │ └── link-with-crypt32.patch │ │ │ │ │ │ └── windows │ │ │ │ │ │ │ ├── MSBuildProject-static-crt.patch │ │ │ │ │ │ │ ├── MSBuildProject-static-lib.patch │ │ │ │ │ │ │ ├── MSBuildProject_fix_gendef_perl.patch │ │ │ │ │ │ │ ├── Mkvcbuild-static-lib.patch │ │ │ │ │ │ │ ├── Solution.patch │ │ │ │ │ │ │ ├── Solution_DEBUG.patch │ │ │ │ │ │ │ ├── Solution_RELEASE.patch │ │ │ │ │ │ │ ├── arm.patch │ │ │ │ │ │ │ ├── fix-compile-flag-Zi.patch │ │ │ │ │ │ │ ├── host_skip_openssl.patch │ │ │ │ │ │ │ ├── install.patch │ │ │ │ │ │ │ ├── minimize_install.patch │ │ │ │ │ │ │ ├── msgfmt.patch │ │ │ │ │ │ │ ├── openssl_exe_path.patch │ │ │ │ │ │ │ ├── python3_build_DEBUG.patch │ │ │ │ │ │ │ ├── python3_build_RELEASE.patch │ │ │ │ │ │ │ ├── python_lib.patch │ │ │ │ │ │ │ ├── tcl_version.patch │ │ │ │ │ │ │ └── win_bison_flex.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libpqxx │ │ │ │ │ ├── config-internal-compiler.h.in │ │ │ │ │ ├── config-public-compiler.h.in │ │ │ │ │ ├── fix_build_with_apple_clang_13.patch │ │ │ │ │ ├── fix_build_with_vs2017.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libprotobuf-mutator │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libproxy │ │ │ │ │ ├── fix-arm-build.patch │ │ │ │ │ ├── fix-dependency-libmodman.patch │ │ │ │ │ ├── fix-install-py.patch │ │ │ │ │ ├── fix-module-lib-name.patch │ │ │ │ │ ├── fix-tools-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── support-windows.patch │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libqcow │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── macos_fixes.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libqglviewer │ │ │ │ │ ├── destdir.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-default-config-on-all-platforms.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libqrencode │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── librabbitmq │ │ │ │ │ ├── fix-uwpwarning.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libraqm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FindFribidi.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libraw │ │ │ │ │ ├── findlibraw_debug_fix.patch │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── lcms2_debug_fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── librdkafka │ │ │ │ │ ├── lz4.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libressl │ │ │ │ │ ├── 0001-enable-ocspcheck-on-msvc.patch │ │ │ │ │ ├── 0002-suppress-msvc-warnings.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── librsvg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h.linux │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── librsync │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── librtmp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dh.patch │ │ │ │ │ ├── fix_strncasecmp.patch │ │ │ │ │ ├── handshake.patch │ │ │ │ │ ├── hashswf.patch │ │ │ │ │ ├── hide_netstackdump.patch │ │ │ │ │ ├── librtmp.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── librttopo │ │ │ │ │ ├── fix-makefiles.patch │ │ │ │ │ ├── fix-pc-file.patch │ │ │ │ │ ├── geos-config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── rttopo_config.h.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsamplerate │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsass │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_compiler_flags.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsbml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsbsms │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsecret │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsercomm │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsigcpp-3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsigcpp │ │ │ │ │ ├── disable_tests_enable_static_build.patch │ │ │ │ │ ├── fix-shared-windows-build.patch │ │ │ │ │ ├── fix-usage-in-static-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── version.patch │ │ │ │ ├── libslirp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsmb2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsndfile │ │ │ │ │ ├── fix-mp3lame.patch │ │ │ │ │ ├── fix-uwp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsnoretoast │ │ │ │ │ ├── include_fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsodium │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── sodiumConfig.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsoundio │ │ │ │ │ ├── fix_cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libspatialindex │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── static.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libspatialite │ │ │ │ │ ├── fix-linux-configure.patch │ │ │ │ │ ├── fix-makefiles.patch │ │ │ │ │ ├── gaiaconfig-msvc.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libspnav │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsquish │ │ │ │ │ ├── export-target.patch │ │ │ │ │ ├── fix-export-symbols.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsrt │ │ │ │ │ ├── fix-dependency-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsrtp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libssh │ │ │ │ │ ├── 0001-export-pkgconfig-file.patch │ │ │ │ │ ├── 0002-mingw_for_Android.patch │ │ │ │ │ ├── 0003-create_symlink_unix_only.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libssh2 │ │ │ │ │ ├── 0001-Fix-UWP.patch │ │ │ │ │ ├── 0002-fix-macros.patch │ │ │ │ │ ├── 0003-fix-openssl3.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libstemmer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libstk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libsvm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libtasn1 │ │ │ │ │ ├── msvc_fixes.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libtcod │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libtess2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libtheora │ │ │ │ │ ├── 0001-fix-uwp.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── libtheora.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unofficial-theora-config.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libtins │ │ │ │ │ ├── find-pcap_static.patch │ │ │ │ │ ├── fix-source-writes.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libtomcrypt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libtommath │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libtorrent │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libu2f-server │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── strndup-fix.patch │ │ │ │ │ ├── u2f-server-version.h │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── windows.patch │ │ │ │ ├── libudis86 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-macbuild.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libudns │ │ │ │ │ ├── ignore_unknown_options.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libui │ │ │ │ │ ├── 001-fix-cmake.patch │ │ │ │ │ ├── 002-fix-macosx-build.patch │ │ │ │ │ ├── 003-fix-system-link.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libunibreak │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libunifex │ │ │ │ │ ├── fix-compile-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libunistring │ │ │ │ │ ├── copyright │ │ │ │ │ ├── fix-for-automake-1.16.4.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── liburing │ │ │ │ │ ├── fix-configure.patch │ │ │ │ │ ├── fix-spec-version.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libusb-win32 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libusb │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libusbmuxd │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-win-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libuuid │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.linux.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unofficial-libuuid-config.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libuv │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unofficial-libuv-config.in.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libuvc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libvmdk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libvorbis │ │ │ │ │ ├── 0001-Dont-export-vorbisenc-functions.patch │ │ │ │ │ ├── 0002-Fixup-pkgconfig-libs.patch │ │ │ │ │ ├── 0003-def-mingw-compat.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libvpx │ │ │ │ │ ├── 0002-Fix-nasm-debug-format-flag.patch │ │ │ │ │ ├── 0003-add-uwp-and-v142-support.patch │ │ │ │ │ ├── 0004-remove-library-suffixes.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unofficial-libvpx-config.cmake.in │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vpx.pc.in │ │ │ │ ├── libwandio │ │ │ │ │ ├── configure.lib.patch │ │ │ │ │ ├── configure.patch │ │ │ │ │ ├── curl.patch │ │ │ │ │ ├── openssl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libwebm │ │ │ │ │ ├── Fix-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libwebp │ │ │ │ │ ├── 0001-build.patch │ │ │ │ │ ├── 0002-cmake-config-add-backwards-compatibility.patch │ │ │ │ │ ├── 0003-always-mux.patch │ │ │ │ │ ├── 0004-add-missing-linked-library.patch │ │ │ │ │ ├── 0006-fix-dependecies-platform.patch │ │ │ │ │ ├── 0007-fix-arm-build.patch │ │ │ │ │ ├── 0008-sdl.patch │ │ │ │ │ ├── 0009-glut.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libwebsockets │ │ │ │ │ ├── export-include-path.patch │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── fix-dependency-libuv.patch │ │ │ │ │ ├── fix-find-openssl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libxdiff │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libxlsxwriter │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libxml2 │ │ │ │ │ ├── fix-uwp.patch │ │ │ │ │ ├── fix_cmakelist.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libxmlmm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libxmlpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libxmp-lite │ │ │ │ │ ├── 0001-msvc-buildfix.patch │ │ │ │ │ ├── 0002-fix-symbols.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libxslt │ │ │ │ │ ├── 0001-Fix-makefile.patch │ │ │ │ │ ├── 0002-Fix-lzma.patch │ │ │ │ │ ├── 0003-Fix-configure.patch │ │ │ │ │ ├── only_build_one_lib_type.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libyaml │ │ │ │ │ ├── export-pkgconfig.patch │ │ │ │ │ ├── fix-POSIX_name.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libyuv │ │ │ │ │ ├── deprecated-warning.patch │ │ │ │ │ ├── fix-build-type.patch │ │ │ │ │ ├── fix_cmakelists.patch │ │ │ │ │ ├── libyuv-config.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libzen │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libzip │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── libzippp │ │ │ │ │ ├── fix-find-lzma.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── licensepp │ │ │ │ │ ├── 0001-use-old-pem-pack.patch │ │ │ │ │ ├── 0002-fix-cmake.patch │ │ │ │ │ ├── FindCryptoPP.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lilv │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── linalg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── linenoise-ng │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lionkor-commandline │ │ │ │ │ ├── add-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── live555 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-RTSPClient.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── llfio │ │ │ │ │ ├── issue-83-fix-backport.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage-error-code-dynamic │ │ │ │ │ ├── usage-error-code-static │ │ │ │ │ ├── usage-status-code-dynamic │ │ │ │ │ ├── usage-status-code-static │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── llgl │ │ │ │ │ ├── fix-arm64-build-error.patch │ │ │ │ │ ├── fix-install-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── llvm │ │ │ │ │ ├── 0002-fix-install-paths.patch │ │ │ │ │ ├── 0003-fix-openmp-debug.patch │ │ │ │ │ ├── 0004-fix-dr-1734.patch │ │ │ │ │ ├── 0005-fix-tools-path.patch │ │ │ │ │ ├── 0007-fix-compiler-rt-install-path.patch │ │ │ │ │ ├── 0009-fix-tools-install-path.patch │ │ │ │ │ ├── 0010-fix-libffi.patch │ │ │ │ │ ├── 0011-fix-libxml2.patch │ │ │ │ │ ├── clang_usage │ │ │ │ │ ├── flang_usage │ │ │ │ │ ├── lld_usage │ │ │ │ │ ├── llvm_usage │ │ │ │ │ ├── mlir_usage │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lmdb │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ ├── package-config.cmakein │ │ │ │ │ │ │ └── runtest.cmake │ │ │ │ │ │ ├── lmdb.def │ │ │ │ │ │ └── lmdbd.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lodepng-c │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lodepng │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── log4cplus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── log4cpp │ │ │ │ │ ├── Fix-StaticSupport.patch │ │ │ │ │ ├── fix-export-targets.patch │ │ │ │ │ ├── fix-includepath.patch │ │ │ │ │ ├── fix-install-targets.patch │ │ │ │ │ ├── log4cpp-config.in.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── log4cxx │ │ │ │ │ ├── expat.patch │ │ │ │ │ ├── linux.patch │ │ │ │ │ ├── pkgconfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── loguru │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── copyright │ │ │ │ │ ├── loguruConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lpeg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── lpeg.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lua │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ ├── fix-ios-system.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake.in │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vs2015-impl-c99.patch │ │ │ │ ├── luabridge │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── luafilesystem │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── luajit │ │ │ │ │ ├── 001-fix-build-path.patch │ │ │ │ │ ├── 002-fix-crt-linkage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── luasec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── luasocket │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lunasvg │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lv2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lz4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lzfse │ │ │ │ │ ├── disable-cli-option.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lzo │ │ │ │ │ ├── always_install_pc.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── lzokay │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── magic-enum │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── magic-get │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── magnum-extras │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── magnum-integration │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── magnum-plugins │ │ │ │ │ ├── 002-fix-stb-conflict.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── magnum │ │ │ │ │ ├── 002-sdl-includes.patch │ │ │ │ │ ├── 003-fix-FindGLFW.patch │ │ │ │ │ ├── magnumdeploy.ps1 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mailio │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mapbox-geojson-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mapbox-geojson-vt-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mapbox-geometry │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mapbox-polylabel │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mapbox-variant │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mapbox-wagyu │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mapnik │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── marble │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── qtfix.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── marl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mathc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mathgl │ │ │ │ │ ├── fix_arma_sprintf.patch │ │ │ │ │ ├── fix_attribute.patch │ │ │ │ │ ├── fix_cmakelists_and_cpp.patch │ │ │ │ │ ├── fix_default_graph_init.patch │ │ │ │ │ ├── fix_mglDataList.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── matio │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── matplotlib-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── matplotplusplus │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── install-3rd-libraries.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── matroska │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mbedtls │ │ │ │ │ ├── enable-pthread.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mcpp │ │ │ │ │ ├── 0001-fix-_POSIX_C_SOURCE.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mdns │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mdnsresponder │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mdspan │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mecab │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── fix_wpath_unsigned.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── memorymodule │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mesa │ │ │ │ │ ├── d3d10sw.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── radv-msvc-llvm13-2.patch │ │ │ │ │ ├── swr-llvm13.patch │ │ │ │ │ ├── swr-msvc-2.patch │ │ │ │ │ ├── swravx512-post-static-link.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── meschach │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── meshoptimizer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── metis │ │ │ │ │ ├── disable-programs.patch │ │ │ │ │ ├── enable-install.patch │ │ │ │ │ ├── fix-INT_MIN_define.patch │ │ │ │ │ ├── fix-gklib-vs14-math.patch │ │ │ │ │ ├── fix-linux-build-error.patch │ │ │ │ │ ├── fix-metis-vs14-math.patch │ │ │ │ │ ├── fix-runtime-install-destination.patch │ │ │ │ │ ├── install-metisConfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── metrohash │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mfl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mgnlibs │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mhook │ │ │ │ │ ├── fix-windows-packing-mismatch.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── microsoft-signalr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mikktspace │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── milerius-sfml-imgui │ │ │ │ │ ├── FixFindPackageIssue.patch │ │ │ │ │ ├── cpp11.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mimalloc │ │ │ │ │ ├── fix-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minc │ │ │ │ │ ├── config.patch │ │ │ │ │ ├── fix-dependency-hdf5.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minhook │ │ │ │ │ ├── fix-usage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minifb │ │ │ │ │ ├── fix-arm-build-error.patch │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── fix-install-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minimp3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minio-cpp │ │ │ │ │ ├── fix_cmake_file.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minisat-master-keying │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minitrace │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── miniupnpc │ │ │ │ │ ├── cmakelists.diff │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── miniz │ │ │ │ │ ├── fix-pkgconfig-location.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minizip-ng │ │ │ │ │ ├── Modify-header-file-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── minizip │ │ │ │ │ ├── 0001-remove-ifndef-NOUNCRYPT.patch │ │ │ │ │ ├── 0002-add-declaration-for-mkdir.patch │ │ │ │ │ ├── 0003-no-io64.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── minizipConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mio │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mlpack │ │ │ │ │ ├── cmakelists.patch │ │ │ │ │ ├── fix-configure-error.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix-test-dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mman │ │ │ │ │ ├── mman-static.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mmloader │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mmx │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mnn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-package-and-install.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── modp-base64 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h.cmake │ │ │ │ │ ├── libmodpbase64.def │ │ │ │ │ ├── modp_b64_data.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mongo-c-driver │ │ │ │ │ ├── disable-source-write.patch │ │ │ │ │ ├── disable-static-when-dynamic-build.patch │ │ │ │ │ ├── fix-arm-build.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix-dependency-libbson.patch │ │ │ │ │ ├── fix-include-directory.patch │ │ │ │ │ ├── fix-static-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mongo-cxx-driver │ │ │ │ │ ├── disable-c2338-mongo-cxx-driver.patch │ │ │ │ │ ├── disable_test_and_example.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix-uwp.patch │ │ │ │ │ ├── github-654.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mongoose │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── monkeys-audio │ │ │ │ │ ├── fix-project-config.patch │ │ │ │ │ ├── license │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-certificate-step.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── moos-core │ │ │ │ │ ├── cmake_fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── moos-essential │ │ │ │ │ ├── fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── moos-ui │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── morton-nd │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mosquitto │ │ │ │ │ ├── 0001-add-archive-destination-to-install.patch │ │ │ │ │ ├── 0002-win64-support.patch │ │ │ │ │ ├── 0003-add-find_package-libwebsockets.patch │ │ │ │ │ ├── 0004-support-static-build.patch │ │ │ │ │ ├── 0005-websocket-shared-lib-name.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mozjpeg │ │ │ │ │ ├── fix-install-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mp-units │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mp3lame │ │ │ │ │ ├── 00001-msvc-upgrade-solution-up-to-vc11.patch │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_lame_init_old_from_symbol_list.patch │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mpark-variant │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mpc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mpfr │ │ │ │ │ ├── dll.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── src-only.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mpg123 │ │ │ │ │ ├── fix-modulejack.patch │ │ │ │ │ ├── no-executables.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mpi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mpir │ │ │ │ │ ├── enable-runtimelibrary-toggle.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mpmcqueue │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mqtt-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ms-angle │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ms-gltf │ │ │ │ │ ├── fix-apple-filesystem.patch │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ms-gsl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ms-quic │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── fix-platform.patch │ │ │ │ │ ├── fix-warnings.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── msdfgen │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── msgpack │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── msgpack11 │ │ │ │ │ ├── disable-werror.patch │ │ │ │ │ ├── fix-additerator.patch │ │ │ │ │ ├── msvc.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── msinttypes │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── msix │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-dependency-catch2.patch │ │ │ │ │ ├── install-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── msmpi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mstch │ │ │ │ │ ├── do-not-force-release.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mujs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── munit │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── muparser │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── murmurhash │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mvfst │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── mygui │ │ │ │ │ ├── fix-generation.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nameof │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nana │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.cmake.in │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nano-signal-slot │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanobench │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanodbc │ │ │ │ │ ├── add-missing-include.patch │ │ │ │ │ ├── find-unixodbc.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── rename-version.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanoflann │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanogui │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanomsg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanopb │ │ │ │ │ ├── fix-python.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanoprintf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanorange │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanort │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nanovg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── nanovgConfig.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nativefiledialog │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nayuki-qr-code-generator │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nccl │ │ │ │ │ ├── FindNCCL.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ncurses │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── neargye-semver │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ned14-internal-quickcpplib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── quicklib-depheaders.patch │ │ │ │ │ ├── sha_manifest.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── neon2sse │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── netcdf-c │ │ │ │ │ ├── fix-dependency-libmath.patch │ │ │ │ │ ├── fix-dependency-libzip.patch │ │ │ │ │ ├── fix-dependency-mpi.patch │ │ │ │ │ ├── fix-dependency-zlib.patch │ │ │ │ │ ├── fix-linkage-error.patch │ │ │ │ │ ├── fix-manpage-msys.patch │ │ │ │ │ ├── fix-pkgconfig.patch │ │ │ │ │ ├── no-install-deps.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use_targets.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── netcdf-cxx4 │ │ │ │ │ ├── export-cmake-targets.patch │ │ │ │ │ ├── fix-dependecy-hdf5.patch │ │ │ │ │ ├── netCDFCxxConfig.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nethost │ │ │ │ │ ├── 0001-nethost-cmakelists.patch │ │ │ │ │ ├── 0002-settings-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nettle │ │ │ │ │ ├── compile.patch │ │ │ │ │ ├── fix-InstallLibPath.patch │ │ │ │ │ ├── flags.patch │ │ │ │ │ ├── hogweed-x64.def │ │ │ │ │ ├── hogweed-x86.def │ │ │ │ │ ├── libname-windows.patch │ │ │ │ │ ├── nettle-x64.def │ │ │ │ │ ├── nettle-x86.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_gmpd.patch │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── yasm.patch │ │ │ │ ├── networkdirect-sdk │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nghttp2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ngspice │ │ │ │ │ ├── Fix-C2065.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-64-in-codemodel-name.patch │ │ │ │ │ ├── remove-post-build.patch │ │ │ │ │ ├── use-winbison-sharedspice.patch │ │ │ │ │ ├── use-winbison-vngspice.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nifly │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nifticlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── zlib_include.patch │ │ │ │ ├── nlohmann-fifo-map │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nlohmann-json │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nlopt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nmap │ │ │ │ │ ├── fix-msvc-prj.patch │ │ │ │ │ ├── fix-snprintf.patch │ │ │ │ │ ├── fix-ssize_t.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nmslib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nng │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nngpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nnpack │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nonius │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nowide │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nrf-ble-driver │ │ │ │ │ ├── 001-arm64-support.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nspr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nss │ │ │ │ │ ├── 01-nspr-no-lib-prefix.patch │ │ │ │ │ ├── 02-gen-debug-info-for-release.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nsync │ │ │ │ │ ├── export-targets.patch │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nt-wrapper │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nu-book-zxing-cpp │ │ │ │ │ ├── ignore-pdb-install-symbols-in-lib.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nuklear │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── numactl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── numcpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nuspell │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── nvtt │ │ │ │ │ ├── 001-define-value-for-HAVE_UNISTD_H-in-mac-os.patch │ │ │ │ │ ├── add-compile-options-for-osx.patch │ │ │ │ │ ├── bc6h.patch │ │ │ │ │ ├── bc7.patch │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── fix-intrinsic-function.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── skip-building-libsquish.patch │ │ │ │ │ ├── squish.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-consul │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-curl │ │ │ │ │ ├── fix-find-curl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-libressl │ │ │ │ │ ├── libress-submodule-downgrade-required-libressl-version.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-mbedtls │ │ │ │ │ ├── find-mbedtls.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-mongo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-openssl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-postgresql │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-sqlite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-ssdp │ │ │ │ │ ├── fix_String_to_string.patch │ │ │ │ │ ├── fix_win_close.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-swagger │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-websocket │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp-zlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oatpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── observer-ptr-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ocilib │ │ │ │ │ ├── fix-DisableWC4191.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── octomap │ │ │ │ │ ├── 001-fix-exported-targets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ode │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── offscale-libetcd-cpp │ │ │ │ │ ├── fix-dependency-grpc.patch │ │ │ │ │ ├── install-debug.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ogdf │ │ │ │ │ ├── fix-c4723.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ogre-next │ │ │ │ │ ├── environment-overrides.cmake │ │ │ │ │ ├── fix_find_package_sdl2.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── toolchain_fixes.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ogre │ │ │ │ │ ├── disable-dependency-qt.patch │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── fix-findimgui.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── toolchain_fixes.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ois │ │ │ │ │ ├── 0001_install_pkgconfig_win32.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ompl │ │ │ │ │ ├── 0001_Export_targets.patch │ │ │ │ │ ├── 0002_Fix_config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── omplapp │ │ │ │ │ ├── fix_boost_static_link.patch │ │ │ │ │ ├── fix_dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── onednn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oniguruma │ │ │ │ │ ├── fix-uwp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── onnx-optimizer │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── onnx │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── fix-dependency-protobuf.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── onnxruntime-gpu │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── oof │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── open62541 │ │ │ │ │ ├── openssl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openal-soft │ │ │ │ │ ├── dont-export-symbols-in-static-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openblas │ │ │ │ │ ├── fix-redefinition-function.patch │ │ │ │ │ ├── fix-space-path.patch │ │ │ │ │ ├── fix-uwp-build.patch │ │ │ │ │ ├── install-tools.patch │ │ │ │ │ ├── openblas_common.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uwp.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencascade │ │ │ │ │ ├── fix-install-prefix-path.patch │ │ │ │ │ ├── fix-pdb-find.patch │ │ │ │ │ ├── install-include-dir.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencensus-cpp │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencl │ │ │ │ │ ├── 0001-include-unistd-for-gete-ug-id.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencolorio │ │ │ │ │ ├── fix-buildTools.patch │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencsg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── illegal_char.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencv │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencv2 │ │ │ │ │ ├── 0002-install-options.patch │ │ │ │ │ ├── 0003-force-package-requirements.patch │ │ │ │ │ ├── 0004-add-ffmpeg-missing-defines.patch │ │ │ │ │ ├── 0005-fix-cuda.patch │ │ │ │ │ ├── fix-path-contains-++-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencv3 │ │ │ │ │ ├── 0001-disable-downloading.patch │ │ │ │ │ ├── 0002-install-options.patch │ │ │ │ │ ├── 0003-force-package-requirements.patch │ │ │ │ │ ├── 0004-fix-eigen.patch │ │ │ │ │ ├── 0005-fix-vtk9.patch │ │ │ │ │ ├── 0006-fix-uwp.patch │ │ │ │ │ ├── 0007-fix-hdf5.patch │ │ │ │ │ ├── 0008-devendor-quirc.patch │ │ │ │ │ ├── 0009-fix-protobuf.patch │ │ │ │ │ ├── 0010-fix-uwp-tiff-imgcodecs.patch │ │ │ │ │ ├── 0011-remove-python2.patch │ │ │ │ │ ├── 0012-fix-zlib.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opencv4 │ │ │ │ │ ├── 0001-disable-downloading.patch │ │ │ │ │ ├── 0002-install-options.patch │ │ │ │ │ ├── 0003-force-package-requirements.patch │ │ │ │ │ ├── 0004-fix-policy-CMP0057.patch │ │ │ │ │ ├── 0005-fix-eigen.patch │ │ │ │ │ ├── 0006-fix-uwp.patch │ │ │ │ │ ├── 0007-fix-hdf5.patch │ │ │ │ │ ├── 0008-devendor-quirc.patch │ │ │ │ │ ├── 0009-fix-protobuf.patch │ │ │ │ │ ├── 0010-fix-uwp-tiff-imgcodecs.patch │ │ │ │ │ ├── 0011-remove-python2.patch │ │ │ │ │ ├── 0012-fix-zlib.patch │ │ │ │ │ ├── 0013-fix-opengl.patch │ │ │ │ │ ├── 0014-fix-gstreamer.patch │ │ │ │ │ ├── 0015-fix-freetype.patch │ │ │ │ │ ├── 0016-fix-freetype-contrib.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opendnp3 │ │ │ │ │ ├── deps │ │ │ │ │ │ └── asio.cmake │ │ │ │ │ ├── opendnp3-config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openexr │ │ │ │ │ ├── 0001-remove_find_package_macro.patch │ │ │ │ │ ├── 0002-fixup_cmake_exports_path.patch │ │ │ │ │ ├── 0003-remove_symlinks.patch │ │ │ │ │ ├── 0004-Fix-pkg-config-lib-suffix-for-cmake-debug-builds.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opengl-registry │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opengl │ │ │ │ │ ├── glu.pc.in │ │ │ │ │ ├── opengl.pc.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openh264 │ │ │ │ │ ├── 0001-respect-default-library-option.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openigtlink │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openimageio │ │ │ │ │ ├── fix-config-cmake.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix-openjpeg-linkage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openjpeg │ │ │ │ │ ├── Enable-tools-of-each-features.patch │ │ │ │ │ ├── dll.location.patch │ │ │ │ │ ├── fix-lrintf-to-opj_lrintf.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openmama │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openmesh │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openmpi │ │ │ │ │ ├── keep_isystem.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openmvg │ │ │ │ │ ├── 0001-eigen_3.4.0.patch │ │ │ │ │ ├── 0002-eigen-3.4.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openmvs │ │ │ │ │ ├── fix-build-boost-1_77_0.patch │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openni2 │ │ │ │ │ ├── inherit_from_parent_or_project_defaults.patch │ │ │ │ │ ├── openni2deploy.ps1 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── replace_environment_variable.patch │ │ │ │ │ ├── upgrade_projects.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openscap │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openssl-unix │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openssl-uwp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openssl-windows │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openssl │ │ │ │ │ ├── install-pc-files.cmake │ │ │ │ │ ├── openssl.pc.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── remove-deps.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── uwp │ │ │ │ │ │ ├── make-openssl.bat │ │ │ │ │ │ └── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake.in │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── windows │ │ │ │ │ │ └── portfile.cmake │ │ │ │ ├── opensubdiv │ │ │ │ │ ├── fix-build-type.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix-mac-build.patch │ │ │ │ │ ├── fix-version-search.patch │ │ │ │ │ ├── fix_compile-option.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opentelemetry-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opentracing │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── repair_mojibake.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openvdb │ │ │ │ │ ├── 0003-fix-cmake.patch │ │ │ │ │ ├── fix-Target-notfound.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openvpn3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openvr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── openxr-loader │ │ │ │ │ ├── 002-fix-hpp-gen.patch │ │ │ │ │ ├── fix-jinja2.patch │ │ │ │ │ ├── fix-openxr-sdk-jsoncpp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── optimus-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── optional-bare │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── optional-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── opusfile │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── orc │ │ │ │ │ ├── 0003-dependencies-from-vcpkg.patch │ │ │ │ │ ├── 0005-disable-tzdata.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── orocos-kdl │ │ │ │ │ ├── export-include-dir.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── osg-qt │ │ │ │ │ ├── CMakeLists.patch │ │ │ │ │ ├── OsgMacroUtils.patch │ │ │ │ │ ├── fix-static-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-lib.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── osg │ │ │ │ │ ├── collada.patch │ │ │ │ │ ├── disable-present3d-staticview-in-linux.patch │ │ │ │ │ ├── fix-curl.patch │ │ │ │ │ ├── fix-dependency-coin.patch │ │ │ │ │ ├── fix-example-application.patch │ │ │ │ │ ├── fix-liblas.patch │ │ │ │ │ ├── fix-nvtt.patch │ │ │ │ │ ├── fix-sdl.patch │ │ │ │ │ ├── osgdb_zip_nozip.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-prefix.patch │ │ │ │ │ ├── static.patch │ │ │ │ │ ├── use-boost-asio.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── osgearth │ │ │ │ │ ├── StaticOSG.patch │ │ │ │ │ ├── blend2d-fix.patch │ │ │ │ │ ├── fix-dependency-osg.patch │ │ │ │ │ ├── fix-gcc11-compilation.patch │ │ │ │ │ ├── fix-imgui.patch │ │ │ │ │ ├── make-all-find-packages-required.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-tool-debug-suffix.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── osi │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── otl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── outcome │ │ │ │ │ ├── outcome-prune-sources.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── p-ranav-csv │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── p-ranav-csv2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pagmo2 │ │ │ │ │ ├── disable-C4701.patch │ │ │ │ │ ├── disable-md-override.patch │ │ │ │ │ ├── find-tbb.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── paho-mqtt │ │ │ │ │ ├── fix-install-path.patch │ │ │ │ │ ├── fix-unresolvedsymbol-arm.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_compiler_options.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── paho-mqttpp3 │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── fix-include-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── palsigslot │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pango │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pangolin │ │ │ │ │ ├── fix-build-error-in-vs2019.patch │ │ │ │ │ ├── fix-cmake-version.patch │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix-includepath-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pangomm │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── parallel-hashmap │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── parallelstl │ │ │ │ │ ├── fix-cmakelist.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── paraview │ │ │ │ │ ├── add-tools-option.patch │ │ │ │ │ ├── catalyst_install.patch │ │ │ │ │ ├── cgns.patch │ │ │ │ │ ├── external_vtk.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── python_include.patch │ │ │ │ │ ├── python_wrapper.patch │ │ │ │ │ ├── removedoublesymbols.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── parmetis │ │ │ │ │ ├── fix-gklib-vs14-math.patch │ │ │ │ │ ├── fix-libparmetis-cmakelist.patch │ │ │ │ │ ├── fix-metis-vs14-math.patch │ │ │ │ │ ├── fix-root-cmakelist-2.patch │ │ │ │ │ ├── fix-root-cmakelist.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use_stdint.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── parquet │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── parson │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pbc │ │ │ │ │ ├── linux.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── windows.patch │ │ │ │ ├── pcapplusplus │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pcg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pcl │ │ │ │ │ ├── Workaround-ICE-in-release.patch │ │ │ │ │ ├── add-gcc-version-check.patch │ │ │ │ │ ├── fix-check-sse.patch │ │ │ │ │ ├── fix-cmake_find_library_suffixes.patch │ │ │ │ │ ├── fix-error-C3052.patch │ │ │ │ │ ├── fix-find-libusb.patch │ │ │ │ │ ├── fix-find-qhull.patch │ │ │ │ │ ├── fix-namespace-cub.patch │ │ │ │ │ ├── fix-numeric-literals-flag.patch │ │ │ │ │ ├── fix-pkgconfig.patch │ │ │ │ │ ├── install-examples.patch │ │ │ │ │ ├── no-absolute.patch │ │ │ │ │ ├── pcl_config.patch │ │ │ │ │ ├── pcl_utils.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-broken-targets.patch │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pcre │ │ │ │ │ ├── export-cmake-targets.patch │ │ │ │ │ ├── pcre-8.45_fix_postfix_for_debug_Windows_builds.patch │ │ │ │ │ ├── pcre-8.45_suppress_cmake_and_compiler_warnings-errors.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unofficial-pcre-config.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pcre2 │ │ │ │ │ ├── pcre2-10.35_fix-uwp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pdal-c │ │ │ │ │ ├── cmake-project-include.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pdal │ │ │ │ │ ├── 0002-no-source-dir-writes.patch │ │ │ │ │ ├── 0003-fix-copy-vendor.patch │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── fix-find-library-suffix.patch │ │ │ │ │ ├── fix-unix-compiler-options.patch │ │ │ │ │ ├── no-pkgconfig-requires.patch │ │ │ │ │ ├── no-rpath.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── use-vcpkg-boost.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pdcurses │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── nmake-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pdqsort │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pe-parse │ │ │ │ │ ├── arm64-windows-fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pegtl-2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pegtl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pffft │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pfring │ │ │ │ │ ├── makefile.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-vcpkg-libpcap.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pfultz2-linq │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── phnt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── physfs │ │ │ │ │ ├── 001-fix-lzmasdk-arm64-windows.patch │ │ │ │ │ ├── 002-fix-posix-eintr.patch │ │ │ │ │ ├── 003-fix-posix-cloexec.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── physx │ │ │ │ │ ├── fix-compiler-flag.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-werror.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── picojson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── picosha2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── piex │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pistache │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pixel │ │ │ │ │ ├── 001-prevent-examples.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pixman │ │ │ │ │ ├── no-host-cpu-checks.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_test_demos.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pkgconf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── platform-folders │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plf-colony │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plf-hive │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plf-list │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plf-nanotimer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plf-stack │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plibsys │ │ │ │ │ ├── fix_configuration.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plog │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plplot │ │ │ │ │ ├── 0001-findwxwidgets-fixes.patch │ │ │ │ │ ├── 0002-wxwidgets-dev-fixes.patch │ │ │ │ │ ├── fix-pkg-config.patch │ │ │ │ │ ├── fix_utils.patch │ │ │ │ │ ├── install-interface-include-directories.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-math-h-nan.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── plustache │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pmdk │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pngpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pngwriter │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── poco │ │ │ │ │ ├── arm64_pcre.patch │ │ │ │ │ ├── fix-InstallDataMysql.patch │ │ │ │ │ ├── fix-error-c3861.patch │ │ │ │ │ ├── fix-feature-sqlite3.patch │ │ │ │ │ ├── fix_dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── static_pcre.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── podofo │ │ │ │ │ ├── 0002-HAVE_UNISTD_H.patch │ │ │ │ │ ├── 0003-uwp_fix.patch │ │ │ │ │ ├── 0005-fix-crypto.patch │ │ │ │ │ ├── fix-x64-osx.patch │ │ │ │ │ ├── freetype.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── poissonrecon │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── disable-gcc5-checks.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-external-libs.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── poly2tri │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-sweep-h-codepage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── polyclipping │ │ │ │ │ ├── FindCLIPPER.cmake │ │ │ │ │ ├── fix_targets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── polyhook2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── polymorphic-value │ │ │ │ │ ├── 001_no_catch_submodule.patch │ │ │ │ │ ├── 002_fixed_config.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ponder │ │ │ │ │ ├── github-121.patch │ │ │ │ │ ├── no-install-unused.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── poppler │ │ │ │ │ ├── cmake-project-include.cmake │ │ │ │ │ ├── export-unofficial-poppler.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unofficial-poppler-config.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── popsift │ │ │ │ │ ├── fix_missing_thrust_include.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── portable-snippets │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── portaudio │ │ │ │ │ ├── fix-library-can-not-be-found.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── portmidi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── portsmf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ppconsul │ │ │ │ │ ├── cmake_build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ppmagic │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pprint │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pqp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── fix-math-functions.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── presentmon │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── proj │ │ │ │ │ ├── fix-proj4-targets-cmake.patch │ │ │ │ │ ├── fix-win-output-name.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tools-cmake.patch │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── proj4 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── prometheus-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── promise-cpp │ │ │ │ │ ├── fix-ifdef.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── protobuf-c │ │ │ │ │ ├── fix-crt-linkage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── protobuf │ │ │ │ │ ├── fix-default-proto-file-path.patch │ │ │ │ │ ├── fix-static-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── protobuf-targets-vcpkg-protoc.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── protopuf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── protozero │ │ │ │ │ ├── fix-builderror.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── proxygen │ │ │ │ │ ├── fix-zstd-zlib-dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-register.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── psimd │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ptex │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── fix-config.cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pthread │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pthreadpool │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── fix-uwp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pthreads │ │ │ │ │ ├── fix-arm-macro.patch │ │ │ │ │ ├── fix-uwp-linkage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── use-md.patch │ │ │ │ │ ├── use-mt.patch │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ptyqt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pugixml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pybind11 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── pystring │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── python2 │ │ │ │ │ ├── 001-build-msvc.patch │ │ │ │ │ ├── 002-build-msvc.patch │ │ │ │ │ ├── 003-build-msvc.patch │ │ │ │ │ ├── 004-static-library-msvc.patch │ │ │ │ │ ├── 005-static-crt-msvc.patch │ │ │ │ │ ├── 006-static-fix-headers.patch │ │ │ │ │ ├── 007-fix-build-path.patch │ │ │ │ │ ├── 008-bz2d.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── python3 │ │ │ │ │ ├── 0001-static-library.patch │ │ │ │ │ ├── 0002-use-vcpkg-zlib.patch │ │ │ │ │ ├── 0003-devendor-external-dependencies.patch │ │ │ │ │ ├── 0004-dont-copy-vcruntime.patch │ │ │ │ │ ├── 0005-only-build-required-projects.patch │ │ │ │ │ ├── 0006-restore-support-for-windows-7.patch │ │ │ │ │ ├── 0007-workaround-windows-11-sdk-rc-compiler-error.patch │ │ │ │ │ ├── 0009-python.pc.patch │ │ │ │ │ ├── 0010-bz2d.patch │ │ │ │ │ ├── openssl.props.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── python_vcpkg.props.in │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qca │ │ │ │ │ ├── 0001-fix-path-for-vcpkg.patch │ │ │ │ │ ├── 0002-fix-build-error.patch │ │ │ │ │ ├── mk-ca-bundle.pl │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qcustomplot │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qhttpengine │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qhull │ │ │ │ │ ├── fix-missing-symbols.patch │ │ │ │ │ ├── include-qhullcpp-shared.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qnnpack │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-packages.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qpid-proton │ │ │ │ │ ├── fix-openssl3.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── qpid-protonConfig.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qscintilla │ │ │ │ │ ├── fix-static.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt-advanced-docking-system │ │ │ │ │ ├── config_changes.patch │ │ │ │ │ ├── hardcode_version.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-3d │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-activeqt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-androidextras │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-base │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── configure_qt.cmake │ │ │ │ │ │ ├── find_qt_mkspec.cmake │ │ │ │ │ │ ├── install_qt.cmake │ │ │ │ │ │ ├── qt_build_submodule.cmake │ │ │ │ │ │ ├── qt_download_submodule.cmake │ │ │ │ │ │ ├── qt_fix_cmake.cmake │ │ │ │ │ │ ├── qt_fix_makefile_install.cmake │ │ │ │ │ │ ├── qt_fix_prl.cmake │ │ │ │ │ │ ├── qt_install_copyright.cmake │ │ │ │ │ │ ├── qt_port_functions.cmake │ │ │ │ │ │ ├── qt_port_hashes.cmake │ │ │ │ │ │ ├── qt_port_hashes_latest.cmake │ │ │ │ │ │ └── qt_submodule_installation.cmake │ │ │ │ │ ├── patches │ │ │ │ │ │ ├── Qt5BasicConfig.patch │ │ │ │ │ │ ├── Qt5GuiConfigExtras.patch │ │ │ │ │ │ ├── Qt5PluginTarget.patch │ │ │ │ │ │ ├── cocoa.patch │ │ │ │ │ │ ├── create_cmake.patch │ │ │ │ │ │ ├── egl.patch │ │ │ │ │ │ ├── gui_configure.patch │ │ │ │ │ │ ├── icu.patch │ │ │ │ │ │ ├── limits_include.patch │ │ │ │ │ │ ├── mysql-configure.patch │ │ │ │ │ │ ├── mysql_plugin_include.patch │ │ │ │ │ │ ├── qt_app.patch │ │ │ │ │ │ ├── static_opengl.patch │ │ │ │ │ │ ├── windows_prf.patch │ │ │ │ │ │ ├── winmain_pro.patch │ │ │ │ │ │ └── xlib.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── qtdeploy.ps1 │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-canvas3d │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-charts │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-connectivity │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-datavis3d │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-declarative │ │ │ │ │ ├── limits_include.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-doc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-gamepad │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-graphicaleffects │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-imageformats │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-location │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-macextras │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-modularscripts │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-mqtt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-multimedia │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-networkauth │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-purchasing │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-quickcontrols │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-quickcontrols2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-remoteobjects │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-script │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-scxml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-sensors │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-serialbus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-serialport │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-speech │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-svg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── static_svg_link_fix.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-tools │ │ │ │ │ ├── icudt-debug-suffix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-translations │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-virtualkeyboard │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-wayland │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-webchannel │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-webengine │ │ │ │ │ ├── common.pri.patch │ │ │ │ │ ├── gl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-webglplugin │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-websockets │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-webview │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-winextras │ │ │ │ │ ├── patches │ │ │ │ │ │ ├── require_quick.patch │ │ │ │ │ │ └── unrequire_quick.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-x11extras │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5-xmlpatterns │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qt5compat │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtactiveqt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtapplicationmanager │ │ │ │ │ ├── bump-cmake-version.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── wrapper-fixes.patch │ │ │ │ ├── qtbase │ │ │ │ │ ├── allow_outside_prefix.patch │ │ │ │ │ ├── clang-cl_source_location.patch │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── qt_install_copyright.cmake │ │ │ │ │ │ ├── qt_install_submodule.cmake │ │ │ │ │ │ ├── qt_port_details-latest.cmake │ │ │ │ │ │ └── qt_port_details.cmake │ │ │ │ │ ├── config_install.patch │ │ │ │ │ ├── dont_force_cmakecache.patch │ │ │ │ │ ├── env.patch │ │ │ │ │ ├── fix_cmake_build.patch │ │ │ │ │ ├── fix_egl.patch │ │ │ │ │ ├── harfbuzz.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── qmake.debug.bat │ │ │ │ │ ├── qt.conf.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtcharts │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtcoap │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtconnectivity │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtdatavis3d │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtdeclarative │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtdeviceutilities │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtdoc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtimageformats │ │ │ │ │ ├── no_target_promotion.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtinterfaceframework │ │ │ │ │ ├── fix-taglib-search.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtkeychain-qt6 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtkeychain │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtlocation │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtlottie │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtmqtt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtmultimedia │ │ │ │ │ ├── fix_windows_header_include.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_unistd.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtnetworkauth │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtopcua │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtpositioning │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtquick3d │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtquickcontrols2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtquicktimeline │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtremoteobjects │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtscxml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtsensors │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtserialbus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtserialport │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtshadertools │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtsvg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qttools │ │ │ │ │ ├── fix_static_build.patch │ │ │ │ │ ├── no_src_changes.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── windeployqt.debug.bat │ │ │ │ ├── qttranslations │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtvirtualkeyboard │ │ │ │ │ ├── hunspell_include_path_fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtwayland │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtwebchannel │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtwebengine │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtwebsockets │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qtwebview │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── quadtree │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── quantlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── quaternions │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── quazip │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── quickfast │ │ │ │ │ ├── 00001-fix-boost-asio.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── quickfix │ │ │ │ │ ├── 00001-fix-build.patch │ │ │ │ │ ├── fix_wsl_symlink_error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── quill │ │ │ │ │ ├── fix-c4189-warning.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── quirc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qwt │ │ │ │ │ ├── fix-dynamic-static.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── qwtw │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rabit │ │ │ │ │ ├── fix-file-conflict.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ragel │ │ │ │ │ ├── 0001-remove-unistd-h.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── randomstr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rang │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── range-v3-vs2015 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── range-v3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rapidcheck │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rapidcsv │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rapidjson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rapidxml-ns │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rapidxml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rappture │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── rappture.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── raylib │ │ │ │ │ ├── fix-linkGlfw.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rbdl-orb │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rbdl │ │ │ │ │ ├── 001_x64_number_of_sections_exceeded_in_object_file_patch.diff │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── re2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── readerwriterqueue │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── readline-osx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── readline-unix │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── readline-win32 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── config.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── readline │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── readosm │ │ │ │ │ ├── fix-makefiles.patch │ │ │ │ │ ├── pc-file.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── realsense2 │ │ │ │ │ ├── fix_config_osx.patch │ │ │ │ │ ├── fix_openni2.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── recast │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── redis-plus-plus │ │ │ │ │ ├── fix-conversion.patch │ │ │ │ │ ├── fix-ws2-linking-windows.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── refl-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── refprop-headers │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rendergraph │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── replxx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── reproc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rest-rpc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── restbed │ │ │ │ │ ├── fix-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── restc-cpp │ │ │ │ │ ├── 0001-exclude-cmake-external-projects.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── restclient-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── restinio │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rexo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rhash │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rhasheq │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── riffcpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ring-span-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rmlui │ │ │ │ │ ├── add-robin-hood.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── roaring │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── robin-hood-hashing │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── robin-map │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rocksdb │ │ │ │ │ ├── 0002-only-build-one-flavor.patch │ │ │ │ │ ├── 0003-use-find-package.patch │ │ │ │ │ ├── 0004-fix-dependency-in-config.patch │ │ │ │ │ ├── 0005-do-not-install-cmake-modules.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rpclib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rply │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-uninitialized-local-variable.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── rply-config.cmake.in │ │ │ │ │ ├── rply.def │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rsasynccpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rsm-binary-io │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rsm-bsa │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rsm-mmio │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rsocket │ │ │ │ │ ├── fix-cmake-config.patch │ │ │ │ │ ├── fix-find-dependencies.patch │ │ │ │ │ ├── fix-folly.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-cpp-17.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rtabmap │ │ │ │ │ ├── 0001-add-bigobj-for-msvc.patch │ │ │ │ │ ├── fix-qt.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rtaudio │ │ │ │ │ ├── fix-alsa.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rtlsdr │ │ │ │ │ ├── Compile-with-msvc.patch │ │ │ │ │ ├── Findlibusb.cmake │ │ │ │ │ ├── fix-version.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rtmidi │ │ │ │ │ ├── fix-POSIXname.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rttr │ │ │ │ │ ├── Fix-depends.patch │ │ │ │ │ ├── fix-directory-output.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-owner-read-perms.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rxcpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── support_find_package.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rxqt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── rxspencer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ryml │ │ │ │ │ ├── cmake-fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ryu │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── ryuConfig.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── s2geometry │ │ │ │ │ ├── CMakeLists.txt.patch │ │ │ │ │ ├── Config.cmake.in.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── s2n │ │ │ │ │ ├── fix-cmake-target-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-trycompile.patch │ │ │ │ │ ├── use-openssl-crypto.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── safeint │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sail │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sais │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sajson │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sassc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove_compiler_flags.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sbp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── win32-install-fix.patch │ │ │ │ ├── scintilla │ │ │ │ │ ├── 0001-static-lib.patch │ │ │ │ │ ├── 0002-static-crt.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sciplot │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sciter-js │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sciter │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── scnlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── scottt-debugbreak │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── scylla-wrapper │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdformat10 │ │ │ │ │ ├── fix-quote.patch │ │ │ │ │ ├── no-absolute.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdformat6 │ │ │ │ │ ├── disable-test.patch │ │ │ │ │ ├── disable-unneeded-include-findboost.patch │ │ │ │ │ ├── fix-dependency-urdfdom.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdformat9 │ │ │ │ │ ├── fix-dependency-urdfdom.patch │ │ │ │ │ ├── fix-quote.patch │ │ │ │ │ ├── no-absolute.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-external-tinyxml-windows.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl1-net │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl1 │ │ │ │ │ ├── SDL.vcxproj.in │ │ │ │ │ ├── SDL1_2017.sln │ │ │ │ │ ├── SDLmain.vcxproj.in │ │ │ │ │ ├── export-symbols-only-in-shared-build.patch │ │ │ │ │ ├── fix-linux-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl2-gfx │ │ │ │ │ ├── 001-lrint-arm64.patch │ │ │ │ │ ├── 002-use-the-lrintf-intrinsic.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl2-image │ │ │ │ │ ├── 0001-sdl2-image-potentially-uninitialized_local-pointer-variable-start.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl2-mixer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-featurempg123.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl2-net │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl2-ttf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl2 │ │ │ │ │ ├── 0001-sdl2-Enable-creation-of-pkg-cfg-file-on-windows.patch │ │ │ │ │ ├── 0002-sdl2-skip-ibus-on-linux.patch │ │ │ │ │ ├── 0003-sdl2-disable-sdlmain-target-search-on-uwp.patch │ │ │ │ │ ├── 0004-Define-crt-macros.patch │ │ │ │ │ ├── 0005-Fix-uwp-joystick.patch │ │ │ │ │ ├── 0006-Update-SDL_sysurl.cpp.patch │ │ │ │ │ ├── 0007-timer-Fix-Emscripten-declaration-after-statement-err.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sdl2pp │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── seal │ │ │ │ │ ├── gsl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── shared-zstd.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── secp256k1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── libsecp256k1-config.h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── secp256k1-config.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── selene │ │ │ │ │ ├── disable_x86_intrinsics_on_arm.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tiff-deprecated-typedefs.patch │ │ │ │ │ ├── trivial-pixel.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sentencepiece │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sentry-native │ │ │ │ │ ├── fix-config-cmake.patch │ │ │ │ │ ├── fix-warningC5105.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-zlib-target.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── septag-sx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── seqan │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── serd │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── serdepp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sf2cute │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sfgui │ │ │ │ │ ├── 001-fix-corefoundation-link.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sfml │ │ │ │ │ ├── arm64.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── stb_include.patch │ │ │ │ │ ├── usage │ │ │ │ │ ├── use-system-freetype.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sfsexp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── shaderc │ │ │ │ │ ├── disable-update-version.patch │ │ │ │ │ ├── fix-build-type.patch │ │ │ │ │ ├── fix-export-cmakefiles.patch │ │ │ │ │ ├── fix-install-shaderc_util.patch │ │ │ │ │ ├── glslang │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── spirv-tools │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── shaderwriter │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── shapelib │ │ │ │ │ ├── fix-usage.patch │ │ │ │ │ ├── option-build-test.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── shiva-sfml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── shiva │ │ │ │ │ ├── no_copy_dll.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── shogun │ │ │ │ │ ├── cmake-config.in.patch │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── eigen-3.4.patch │ │ │ │ │ ├── fix-ASSERT-not-found.patch │ │ │ │ │ ├── fix-cblas-path.patch │ │ │ │ │ ├── fix-dirent.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── signalrclient │ │ │ │ │ ├── 0001_cmake.patch │ │ │ │ │ ├── 0002_fix-compile-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sigslot │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── simage │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── requies-all-dependencies.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── simbody │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── simde │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── simdjson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── simdutf │ │ │ │ │ ├── disable-tests-and-benchmarks.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── simple-fft │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── simpleini │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sjpeg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── skcrypter │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── skia │ │ │ │ │ ├── add-missing-tuple.patch │ │ │ │ │ ├── expat.gn │ │ │ │ │ ├── freetype2.gn │ │ │ │ │ ├── harfbuzz.gn │ │ │ │ │ ├── icu.gn │ │ │ │ │ ├── libjpeg-turbo.gn │ │ │ │ │ ├── libpng.gn │ │ │ │ │ ├── libwebp.gn │ │ │ │ │ ├── piex.gn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── skiaConfig.cmake.in │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── zlib.gn │ │ │ │ ├── skyr-url │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sleef │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sleepy-discord │ │ │ │ │ ├── fix-boost.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── slikenet │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── slikenet-config.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sltbench │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── smpeg2 │ │ │ │ │ ├── 001-correct-sdl-headers-dir.patch │ │ │ │ │ ├── 002-use-SDL2-headers.patch │ │ │ │ │ ├── 003-fix-double-ptr-to-int-comparison.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── snappy │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sndfile │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── snowhouse │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── so5extra │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sobjectizer │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── soci │ │ │ │ │ ├── export-include-dirs.patch │ │ │ │ │ ├── fix-dependency-libmysql.patch │ │ │ │ │ ├── fix-mysql-feature-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── socket-io-client │ │ │ │ │ ├── fix-file-not-found.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sockpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── sockppConfig.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── soem │ │ │ │ │ ├── disable-werror.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── winpcap.patch │ │ │ │ ├── soil │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── soilConfig.cmake.in │ │ │ │ │ ├── soilConfigVersion.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── soil2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Workaround-ICE-in-release.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── soil2Config.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sokol │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sol2 │ │ │ │ │ ├── fix-namespace.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── solid3 │ │ │ │ │ ├── disable-examples.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── potentially-uninitialized-local-pointer-variable.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sophus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── soqt │ │ │ │ │ ├── disable-cpackd.patch │ │ │ │ │ ├── disable-test-code.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sord │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── soundtouch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── soxr │ │ │ │ │ ├── 001_initialize-resampler.patch │ │ │ │ │ ├── 002_disable_warning.patch │ │ │ │ │ ├── 003_detect_arm_on_windows.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spaceland │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── span-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sparsehash │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sparsepp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spatialite-tools │ │ │ │ │ ├── fix-makefiles.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spdk-dpdk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FindNuma.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── spdk-dpdkConfig.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spdk-ipsec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── spdk-ipsecConfig.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spdk-isal │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── spdk-isalConfig.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spdk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FindNuma.cmake │ │ │ │ │ ├── FindRDMA.cmake │ │ │ │ │ ├── Findibverbs.cmake │ │ │ │ │ ├── Finduuid.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── spdkConfig.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spdlog │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spectra │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── speex │ │ │ │ │ ├── 0001-make-pkg-config-lib-name-configurable.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── speexdsp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── jitter_ctl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spirit-po │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spirv-cross │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spirv-headers │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spirv-reflect │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spirv-tools │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spix │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sprout │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── spscqueue │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sqlcipher │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── sqlcipher-config.in.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sqlite-modern-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sqlite-orm │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── fix-features-build-error.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sqlite3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-arm-uwp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── sqlite3-config.in.cmake │ │ │ │ │ ├── sqlite3.pc.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sqlitecpp │ │ │ │ │ ├── 0001-unofficial-sqlite3-and-sqlcipher.patch │ │ │ │ │ ├── fix_dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sqlpp11-connector-mysql │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sqlpp11-connector-sqlite3 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sqlpp11 │ │ │ │ │ ├── ddl2cpp_path.patch │ │ │ │ │ ├── fix-dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── squirrel │ │ │ │ │ ├── fix_optionally_build_sq.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sratom │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── srell │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── srpc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── starlink-ast │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── status-code │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── status-value-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── stb │ │ │ │ │ ├── FindStb.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── stlab │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── stormlib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── strict-variant │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── string-theory │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── string-view-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── strtk │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── stx │ │ │ │ │ ├── CMakeLists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── stxxl │ │ │ │ │ ├── 0001-fix-visual-studio.patch │ │ │ │ │ ├── fix-include-dir.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── suitesparse │ │ │ │ │ ├── FindCXSparse.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper_cxsparse.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── sundials │ │ │ │ │ ├── install-dlls-in-bin.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── superlu │ │ │ │ │ ├── fix-libm.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-make.inc.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── symengine │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── systemc │ │ │ │ │ ├── install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── szip │ │ │ │ │ ├── fix-linkage-config.patch │ │ │ │ │ ├── mingw-lib-names.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── szip.pc.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tabulate │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tacopie │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── fix-export.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── taglib │ │ │ │ │ ├── msvc-disable-deprecated-warnings.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── taocpp-json │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tap-windows6 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── taskflow │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tbb │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-static-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── terminate-when-buildtool-notfound.patch │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tcb-span │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tcl │ │ │ │ │ ├── force-shell-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tclap │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── teemo │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── telnetpp │ │ │ │ │ ├── fix-install-paths.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tensorflow-cc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tensorflow-common │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README-linux │ │ │ │ │ ├── README-macos │ │ │ │ │ ├── README-windows │ │ │ │ │ ├── change-macros-for-static-lib.patch │ │ │ │ │ ├── convert_lib_params_linux.py │ │ │ │ │ ├── convert_lib_params_macos.py │ │ │ │ │ ├── convert_lib_params_windows.py │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── fix-windows-build.patch │ │ │ │ │ ├── generate_static_link_cmd_linux.py │ │ │ │ │ ├── generate_static_link_cmd_macos.py │ │ │ │ │ ├── generate_static_link_cmd_windows.py │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tensorflow-common.cmake │ │ │ │ │ ├── tensorflow-config-shared.cmake.in │ │ │ │ │ ├── tensorflow-config-static.cmake.in │ │ │ │ │ ├── tensorflow-config-windows-dll.cmake.in │ │ │ │ │ ├── tensorflow-config-windows-lib.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tensorflow │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tensorpipe │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── support-pybind11.patch │ │ │ │ │ ├── support-test.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── termcolor │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tesseract │ │ │ │ │ ├── fix-tiff-linkage.patch │ │ │ │ │ ├── fix-timeval.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tfhe │ │ │ │ │ ├── mac-fix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tgbot-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tgc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tgui │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── fix-usage.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── theia │ │ │ │ │ ├── eigen-3.4.patch │ │ │ │ │ ├── fix-external-dependencies.patch │ │ │ │ │ ├── fix-external-dependencies2.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── think-cell-range │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── thor │ │ │ │ │ ├── fix-dependency-sfml.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── threadpool │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── thrift │ │ │ │ │ ├── correct-paths.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tidy-html5 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tiff │ │ │ │ │ ├── FindCMath.patch │ │ │ │ │ ├── cmakelists.patch │ │ │ │ │ ├── fix-pkgconfig.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinkerforge │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tinkerforgeConfig.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tiny-aes-c │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tiny-bignum-c │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tiny-dnn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tiny-process-library │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tiny-regex-c │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinycbor │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinycthread │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinydir │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyexif │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyexpr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── exports.def │ │ │ │ │ ├── fix-issue-34.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyexr │ │ │ │ │ ├── fixtargets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyfiledialogs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinygltf │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinynpy │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyobjloader │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyply │ │ │ │ │ ├── fix-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyspline │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinythread │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinytoml │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyutf8 │ │ │ │ │ ├── fixbuild.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyxml │ │ │ │ │ ├── 0001_use_stl.patch │ │ │ │ │ ├── 0002_export_tinyxml.patch │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── tinyxml-config.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tinyxml2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tl-expected │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tl-function-ref │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tl-generator │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tl-optional │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tl-ranges │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tlx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tmx │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tmxlite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tmxparser │ │ │ │ │ ├── fix_include_paths.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── toml11 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tomlplusplus │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tool-meson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── torch-th │ │ │ │ │ ├── debug.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tracy │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── transwarp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── trantor │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vcpkg.patch │ │ │ │ ├── tre │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── treehh │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── treehopper │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── triangle │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── enable_64bit_architecture.patch │ │ │ │ │ ├── exports.def │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── triton │ │ │ │ │ ├── 001-fix-dependency-z3.patch │ │ │ │ │ ├── 002-fix-dependency-capstone.patch │ │ │ │ │ ├── 003-fix-capstone-5.patch │ │ │ │ │ ├── 004-fix-python.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── trompeloeil │ │ │ │ │ ├── disable_master_project.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tsl-hopscotch-map │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tsl-ordered-map │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tsl-sparse-map │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ttauri │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── turbobase64 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tvision │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── tweeny │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── type-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── type-safe │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── uchardet │ │ │ │ │ ├── fix-uwp-build.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── umock-c │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── unicorn-lib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── unicorn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── units │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── unittest-cpp │ │ │ │ │ ├── fix-include-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── unixodbc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unixodbcConfig.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── unqlite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── unrar │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── msbuild-use-default-sma.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── upb │ │ │ │ │ ├── add-all-libs-target.patch │ │ │ │ │ ├── add-cmake-install.patch │ │ │ │ │ ├── fix-cmakelists.patch │ │ │ │ │ ├── fix-uwp.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── urdfdom-headers │ │ │ │ │ ├── fix-include-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── urdfdom │ │ │ │ │ ├── 0001_use_math_defines.patch │ │ │ │ │ ├── 0002_fix_exports.patch │ │ │ │ │ ├── 0004_fix-dependency-console_bridge.patch │ │ │ │ │ ├── 0005-fix-config-and-install.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── urho3d │ │ │ │ │ ├── add_options.patch │ │ │ │ │ ├── asm_files.patch │ │ │ │ │ ├── externalproject.patch │ │ │ │ │ ├── fix-dependency-readline.patch │ │ │ │ │ ├── fix-install.patch │ │ │ │ │ ├── macosx.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── shared_libs.patch │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── uriparser │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── usbmuxd │ │ │ │ │ ├── fix-definitions.patch │ │ │ │ │ ├── fix-dependence-pthreads.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── usd │ │ │ │ │ ├── fix_build-location.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── usockets │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── usrsctp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── utf8h │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── utf8proc │ │ │ │ │ ├── export-cmake-targets.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── utfcpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── utfz │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── uthash │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── uthenticode │ │ │ │ │ ├── openssl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── uvatlas │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── uvw │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uvw-config.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── uwebsockets │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── v-hacd │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── v8 │ │ │ │ │ ├── V8Config-shared.cmake │ │ │ │ │ ├── V8Config-static.cmake │ │ │ │ │ ├── icu.gn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── v8.patch │ │ │ │ │ ├── v8.pc.in │ │ │ │ │ ├── v8_libbase.pc.in │ │ │ │ │ ├── v8_libplatform.pc.in │ │ │ │ │ ├── v8_monolith.pc.in │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── zlib.gn │ │ │ │ ├── valijson │ │ │ │ │ ├── fix-optional.patch │ │ │ │ │ ├── fix-picojson.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── value-ptr-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vamp-sdk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── variant-lite │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vc │ │ │ │ │ ├── correct_cmake_config_path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vcglib │ │ │ │ │ ├── consume-vcpkg-eigen3.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vcpkg-cmake-config │ │ │ │ │ ├── README.md │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-port-config.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vcpkg_cmake_config_fixup.cmake │ │ │ │ ├── vcpkg-cmake │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cmake_get_vars │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-port-config.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ ├── vcpkg_cmake_build.cmake │ │ │ │ │ ├── vcpkg_cmake_configure.cmake │ │ │ │ │ ├── vcpkg_cmake_get_vars.cmake │ │ │ │ │ └── vcpkg_cmake_install.cmake │ │ │ │ ├── vcpkg-get-python-packages │ │ │ │ │ ├── README.md │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-port-config.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── x_vcpkg_get_python_packages.cmake │ │ │ │ ├── vcpkg-gfortran │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vcpkg-gn │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-port-config.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ ├── vcpkg_gn_configure.cmake │ │ │ │ │ └── vcpkg_gn_install.cmake │ │ │ │ ├── vcpkg-pkgconfig-get-modules │ │ │ │ │ ├── README.md │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-port-config.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── x_vcpkg_pkgconfig_get_modules.cmake │ │ │ │ ├── vcpkg-qmake │ │ │ │ │ ├── README.md │ │ │ │ │ ├── copyright │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-port-config.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vcpkg_qmake_configure.cmake │ │ │ │ ├── vcpkg-tool-gyp-nss │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vcpkg-tool-lessmsi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vcpkg-tool-meson │ │ │ │ │ ├── fix_linker_detection.patch │ │ │ │ │ ├── meson-intl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vcpkg-tool-mozbuild │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vcpkg-tool-nodejs │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vcpkg-tool-python2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vectorclass │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── visit-struct │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vk-bootstrap │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ ├── vk-bootstrap-config.cmake │ │ │ │ │ ├── vk-bootstrap-targets-debug.cmake │ │ │ │ │ └── vk-bootstrap-targets-release.cmake │ │ │ │ ├── vlfeat │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── expose_missing_symbols.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vlpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── volk │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vs-yasm │ │ │ │ │ ├── fix_paths.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vtk-dicom │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── std.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vtk-m │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vtk │ │ │ │ │ ├── 156fb524.patch │ │ │ │ │ ├── 1f00a0c9.patch │ │ │ │ │ ├── FindExpat.patch │ │ │ │ │ ├── FindHDF5.cmake │ │ │ │ │ ├── FindLZ4.patch │ │ │ │ │ ├── FindLZMA.patch │ │ │ │ │ ├── Findproj.patch │ │ │ │ │ ├── NoUndefDebug.patch │ │ │ │ │ ├── UseProj5Api.patch │ │ │ │ │ ├── d107698a.patch │ │ │ │ │ ├── fix-gdal.patch │ │ │ │ │ ├── fix-using-hdf5.patch │ │ │ │ │ ├── missing-limits.patch │ │ │ │ │ ├── pegtl.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── python_debug.patch │ │ │ │ │ ├── pythonwrapper.patch │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── vtkm.patch │ │ │ │ ├── vulkan-headers │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vulkan-hpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vulkan-memory-allocator │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── unofficial-vulkan-memory-allocator-config.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vulkan │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── vxl │ │ │ │ │ ├── fix_dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── testlib.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wampcc │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wangle │ │ │ │ │ ├── fix-config-cmake.patch │ │ │ │ │ ├── fix_dependency.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wavelib │ │ │ │ │ ├── disable-test.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wavpack │ │ │ │ │ ├── OpenSSL.patch │ │ │ │ │ ├── fix-symbol-exports.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── websocketpp │ │ │ │ │ ├── cxx20.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wepoll │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wg21-sg14 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wil │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wildmidi │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wincrypt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── winlamb │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── winpcap │ │ │ │ │ ├── Packet.vcxproj │ │ │ │ │ ├── create_bin.bat │ │ │ │ │ ├── create_lib.patch │ │ │ │ │ ├── fix-create-lib-batch.patch │ │ │ │ │ ├── packetNtx.patch.in │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ ├── wpcap.patch.in │ │ │ │ │ └── wpcap.vcxproj │ │ │ │ ├── winpty │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── allow-build-static.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── winreg │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── winsock2 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── winsparkle │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wintoast │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── woff2 │ │ │ │ │ ├── 0001-unofficial-brotli.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wordnet │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix_gobal_vars_uninit_local_ptr.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── wordnet-config.cmake.in │ │ │ │ ├── workflow │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wpilib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wren │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wt │ │ │ │ │ ├── 0002-link-glew.patch │ │ │ │ │ ├── 0005-XML_file_path.patch │ │ │ │ │ ├── 0006-GraphicsMagick.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wtl │ │ │ │ │ ├── appwizard_setup.js-vs2022.patch │ │ │ │ │ ├── atlmisc.h-bug329.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wxchartdir │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── wxwidgets │ │ │ │ │ ├── disable-platform-lib-dir.patch │ │ │ │ │ ├── fix-build.patch │ │ │ │ │ ├── fix-linux-configure.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── setup.h.in │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── x-plane │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── x264 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── uwp-cflags.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── x265 │ │ │ │ │ ├── disable-install-pdb.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xalan-c │ │ │ │ │ ├── fix-linux-no-bin.patch │ │ │ │ │ ├── fix-missing-dll-error.patch │ │ │ │ │ ├── fix-win-deprecated-err.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xaudio2redist │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── xaudio2redist-config.cmake.in │ │ │ │ ├── xbyak │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xerces-c │ │ │ │ │ ├── disable-tests.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── remove-dll-export-macro.patch │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xeus │ │ │ │ │ ├── Fix-Compile-nlohmann-json.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xframe │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xlnt │ │ │ │ │ ├── fix-not-found-include.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── static-linking-for-windows.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xlsxio │ │ │ │ │ ├── fix-dependencies.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xmlsec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── pkgconfig_fixes.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xnnpack │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── use-packages.patch │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xorstr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xproperty │ │ │ │ │ ├── fix-target.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xqilla │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fix-compare.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xsimd │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xtensor-blas │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xtensor-fftw │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xtensor-io │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xtensor │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xtl │ │ │ │ │ ├── fix-fixup-cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── xxhash │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yajl │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yaml-cpp │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yara │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yas │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yasm-tool-helper │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── yasm-tool-helper.cmake.in │ │ │ │ ├── yasm-tool │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yasm │ │ │ │ │ ├── add-feature-tools.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-port-config.cmake.in │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yato │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yoga │ │ │ │ │ ├── add-project-declaration.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yomm2 │ │ │ │ │ ├── fix_find_boost.patch │ │ │ │ │ ├── fix_uwp_osx.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── yyjson │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── z3 │ │ │ │ │ ├── fix-install-path.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── z85 │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zeromq │ │ │ │ │ ├── fix-arm.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ ├── zeromq-libzmq-4310-64e6d37ab8.diff │ │ │ │ │ └── zeromq-libzmq-4311-2b04e0ce47.diff │ │ │ │ ├── zfp │ │ │ │ │ ├── fix-build-error.patch │ │ │ │ │ ├── fix-install-tools.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zkpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zlib-ng │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zlib │ │ │ │ │ ├── 0001-Prevent-invalid-inclusions-when-HAVE_-is-set-to-0.patch │ │ │ │ │ ├── 0002-android-build-mingw.patch │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── add_debug_postfix_on_mingw.patch │ │ │ │ │ ├── cmake_dont_build_more_than_needed.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zookeeper │ │ │ │ │ ├── cmake.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg.json │ │ │ │ │ └── win32.patch │ │ │ │ ├── zopfli │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zpp-bits │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zserge-webview │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zstd │ │ │ │ │ ├── install_pkgpc.patch │ │ │ │ │ ├── no-static-suffix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zstr │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── ztd-text │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── usage │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zug │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zydis │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── zyre │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── Findczmq.cmake │ │ │ │ │ ├── Findlibzmq.cmake │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ ├── vcpkg-cmake-wrapper.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ └── zziplib │ │ │ │ │ ├── cmake-project-include.cmake │ │ │ │ │ ├── no-release-postfix.patch │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── scripts │ │ │ │ ├── Get-Changelog.ps1 │ │ │ │ ├── addPoshVcpkgToPowershellProfile.ps1 │ │ │ │ ├── azure-pipelines │ │ │ │ │ ├── Create-PRDiff.ps1 │ │ │ │ │ ├── azure-pipelines.yml │ │ │ │ │ ├── create-vmss-helpers.psm1 │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── azure-pipelines.yml │ │ │ │ │ │ ├── create-image.ps1 │ │ │ │ │ │ ├── create-vmss.ps1 │ │ │ │ │ │ └── provision-image.sh │ │ │ │ │ ├── osx │ │ │ │ │ │ ├── Install-Prerequisites.ps1 │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Setup-VagrantMachines.ps1 │ │ │ │ │ │ ├── Utilities.psm1 │ │ │ │ │ │ ├── azure-pipelines.yml │ │ │ │ │ │ └── configuration │ │ │ │ │ │ │ ├── Vagrantfile-box.rb │ │ │ │ │ │ │ ├── Vagrantfile-vm.rb │ │ │ │ │ │ │ ├── installables.json │ │ │ │ │ │ │ ├── installables.schema.json │ │ │ │ │ │ │ ├── vagrant-box-configuration.json │ │ │ │ │ │ │ ├── vagrant-box-configuration.schema.json │ │ │ │ │ │ │ └── vagrant-configuration.schema.json │ │ │ │ │ ├── test-modified-ports.ps1 │ │ │ │ │ ├── windows-unstable │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── azure-pipelines.yml │ │ │ │ │ │ ├── job.yml │ │ │ │ │ │ └── rearrange-msvc-drop-layout.ps1 │ │ │ │ │ └── windows │ │ │ │ │ │ ├── azure-pipelines.yml │ │ │ │ │ │ ├── create-image.ps1 │ │ │ │ │ │ ├── create-vmss.ps1 │ │ │ │ │ │ ├── deploy-cuda.ps1 │ │ │ │ │ │ ├── deploy-install-disk.ps1 │ │ │ │ │ │ ├── deploy-inteloneapi.ps1 │ │ │ │ │ │ ├── deploy-mpi.ps1 │ │ │ │ │ │ ├── deploy-psexec.ps1 │ │ │ │ │ │ ├── deploy-pwsh.ps1 │ │ │ │ │ │ ├── deploy-settings.txt │ │ │ │ │ │ ├── deploy-tlssettings.ps1 │ │ │ │ │ │ ├── deploy-visual-studio.ps1 │ │ │ │ │ │ ├── deploy-windows-sdks.ps1 │ │ │ │ │ │ ├── disk-space.ps1 │ │ │ │ │ │ ├── drop-to-admin-user-prefix.ps1 │ │ │ │ │ │ ├── provision-entire-image.ps1 │ │ │ │ │ │ ├── sysprep.ps1 │ │ │ │ │ │ └── utility-prefix.ps1 │ │ │ │ ├── boost │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── generate-ports.ps1 │ │ │ │ │ ├── post-build-stubs │ │ │ │ │ │ ├── config.cmake │ │ │ │ │ │ ├── predef.cmake │ │ │ │ │ │ └── test.cmake │ │ │ │ │ └── post-source-stubs │ │ │ │ │ │ ├── atomic.cmake │ │ │ │ │ │ ├── context.cmake │ │ │ │ │ │ ├── fiber.cmake │ │ │ │ │ │ ├── json.cmake │ │ │ │ │ │ ├── log.cmake │ │ │ │ │ │ ├── nowide.cmake │ │ │ │ │ │ └── test.cmake │ │ │ │ ├── bootstrap.ps1 │ │ │ │ ├── bootstrap.sh │ │ │ │ ├── ci.baseline.txt │ │ │ │ ├── cmake │ │ │ │ │ ├── execute_process.cmake │ │ │ │ │ ├── vcpkg_acquire_msys.cmake │ │ │ │ │ ├── vcpkg_add_to_path.cmake │ │ │ │ │ ├── vcpkg_apply_patches.cmake │ │ │ │ │ ├── vcpkg_backup_restore_env_vars.cmake │ │ │ │ │ ├── vcpkg_build_cmake.cmake │ │ │ │ │ ├── vcpkg_build_make.cmake │ │ │ │ │ ├── vcpkg_build_msbuild.cmake │ │ │ │ │ ├── vcpkg_build_ninja.cmake │ │ │ │ │ ├── vcpkg_build_nmake.cmake │ │ │ │ │ ├── vcpkg_build_qmake.cmake │ │ │ │ │ ├── vcpkg_buildpath_length_warning.cmake │ │ │ │ │ ├── vcpkg_check_features.cmake │ │ │ │ │ ├── vcpkg_check_linkage.cmake │ │ │ │ │ ├── vcpkg_clean_executables_in_bin.cmake │ │ │ │ │ ├── vcpkg_clean_msbuild.cmake │ │ │ │ │ ├── vcpkg_common_definitions.cmake │ │ │ │ │ ├── vcpkg_common_functions.cmake │ │ │ │ │ ├── vcpkg_configure_cmake.cmake │ │ │ │ │ ├── vcpkg_configure_gn.cmake │ │ │ │ │ ├── vcpkg_configure_make.cmake │ │ │ │ │ ├── vcpkg_configure_meson.cmake │ │ │ │ │ ├── vcpkg_configure_qmake.cmake │ │ │ │ │ ├── vcpkg_copy_pdbs.cmake │ │ │ │ │ ├── vcpkg_copy_tool_dependencies.cmake │ │ │ │ │ ├── vcpkg_copy_tools.cmake │ │ │ │ │ ├── vcpkg_download_distfile.cmake │ │ │ │ │ ├── vcpkg_execute_build_process.cmake │ │ │ │ │ ├── vcpkg_execute_in_download_mode.cmake │ │ │ │ │ ├── vcpkg_execute_required_process.cmake │ │ │ │ │ ├── vcpkg_execute_required_process_repeat.cmake │ │ │ │ │ ├── vcpkg_extract_source_archive.cmake │ │ │ │ │ ├── vcpkg_extract_source_archive_ex.cmake │ │ │ │ │ ├── vcpkg_fail_port_install.cmake │ │ │ │ │ ├── vcpkg_find_acquire_program.cmake │ │ │ │ │ ├── vcpkg_find_fortran.cmake │ │ │ │ │ ├── vcpkg_fixup_cmake_targets.cmake │ │ │ │ │ ├── vcpkg_fixup_pkgconfig.cmake │ │ │ │ │ ├── vcpkg_from_bitbucket.cmake │ │ │ │ │ ├── vcpkg_from_git.cmake │ │ │ │ │ ├── vcpkg_from_github.cmake │ │ │ │ │ ├── vcpkg_from_gitlab.cmake │ │ │ │ │ ├── vcpkg_from_sourceforge.cmake │ │ │ │ │ ├── vcpkg_get_program_files_platform_bitness.cmake │ │ │ │ │ ├── vcpkg_get_windows_sdk.cmake │ │ │ │ │ ├── vcpkg_host_path_list.cmake │ │ │ │ │ ├── vcpkg_install_cmake.cmake │ │ │ │ │ ├── vcpkg_install_gn.cmake │ │ │ │ │ ├── vcpkg_install_make.cmake │ │ │ │ │ ├── vcpkg_install_meson.cmake │ │ │ │ │ ├── vcpkg_install_msbuild.cmake │ │ │ │ │ ├── vcpkg_install_nmake.cmake │ │ │ │ │ ├── vcpkg_install_qmake.cmake │ │ │ │ │ ├── vcpkg_list.cmake │ │ │ │ │ ├── vcpkg_minimum_required.cmake │ │ │ │ │ ├── vcpkg_replace_string.cmake │ │ │ │ │ ├── vcpkg_test_cmake.cmake │ │ │ │ │ ├── z_vcpkg_apply_patches.cmake │ │ │ │ │ ├── z_vcpkg_escape_regex_control_characters.cmake │ │ │ │ │ ├── z_vcpkg_forward_output_variable.cmake │ │ │ │ │ ├── z_vcpkg_function_arguments.cmake │ │ │ │ │ ├── z_vcpkg_get_cmake_vars.cmake │ │ │ │ │ └── z_vcpkg_prettify_command_line.cmake │ │ │ │ ├── detect_compiler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── file_script.py │ │ │ │ ├── generateBaseline.py │ │ │ │ ├── generatePortVersionsDb.py │ │ │ │ ├── get_cmake_vars │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── ifw │ │ │ │ │ └── maintenance.qs │ │ │ │ ├── ports.cmake │ │ │ │ ├── posh-vcpkg │ │ │ │ │ └── 0.0.1 │ │ │ │ │ │ ├── posh-vcpkg.psd1 │ │ │ │ │ │ └── posh-vcpkg.psm1 │ │ │ │ ├── templates │ │ │ │ │ ├── portfile.in.cmake │ │ │ │ │ └── vcpkg.json.in │ │ │ │ ├── test_ports │ │ │ │ │ ├── cmake-user │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ ├── project │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── llfio-run-tests │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── outcome-run-tests │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── unit-test-cmake │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ ├── test-vcpkg_host_path_list.cmake │ │ │ │ │ │ ├── test-vcpkg_list.cmake │ │ │ │ │ │ ├── test-vcpkg_minimum_required.cmake │ │ │ │ │ │ ├── test-z_vcpkg_cmake_config_fixup_merge.cmake │ │ │ │ │ │ ├── test-z_vcpkg_function_arguments.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── vcpkg-acquire-msys-test │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── vcpkg-ci-boost │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── vcpkg-ci-ffmpeg │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── vcpkg-ci-llvm │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── vcpkg-ci-opencv │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── vcpkg-ci-paraview │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ ├── vcpkg-find-acquire-program │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ │ └── vcpkg-from-git-test │ │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ │ └── vcpkg.json │ │ │ │ ├── toolchains │ │ │ │ │ ├── android.cmake │ │ │ │ │ ├── freebsd.cmake │ │ │ │ │ ├── ios.cmake │ │ │ │ │ ├── linux.cmake │ │ │ │ │ ├── mingw.cmake │ │ │ │ │ ├── openbsd.cmake │ │ │ │ │ ├── osx.cmake │ │ │ │ │ └── windows.cmake │ │ │ │ ├── vcpkg.schema.json │ │ │ │ ├── vcpkgTools.xml │ │ │ │ ├── vcpkg_completion.bash │ │ │ │ ├── vcpkg_completion.fish │ │ │ │ ├── vcpkg_completion.zsh │ │ │ │ ├── vcpkg_get_dep_info.cmake │ │ │ │ └── vcpkg_get_tags.cmake │ │ │ │ ├── shell.nix │ │ │ │ ├── toolsrc │ │ │ │ └── VERSION.txt │ │ │ │ ├── triplets │ │ │ │ ├── arm-uwp.cmake │ │ │ │ ├── arm64-windows.cmake │ │ │ │ ├── community │ │ │ │ │ ├── arm-android.cmake │ │ │ │ │ ├── arm-ios.cmake │ │ │ │ │ ├── arm-linux.cmake │ │ │ │ │ ├── arm-mingw-dynamic.cmake │ │ │ │ │ ├── arm-mingw-static.cmake │ │ │ │ │ ├── arm-neon-android.cmake │ │ │ │ │ ├── arm-windows-static.cmake │ │ │ │ │ ├── arm-windows.cmake │ │ │ │ │ ├── arm64-android.cmake │ │ │ │ │ ├── arm64-ios.cmake │ │ │ │ │ ├── arm64-linux.cmake │ │ │ │ │ ├── arm64-mingw-dynamic.cmake │ │ │ │ │ ├── arm64-mingw-static.cmake │ │ │ │ │ ├── arm64-osx-dynamic.cmake │ │ │ │ │ ├── arm64-osx.cmake │ │ │ │ │ ├── arm64-uwp.cmake │ │ │ │ │ ├── arm64-windows-static-md.cmake │ │ │ │ │ ├── arm64-windows-static.cmake │ │ │ │ │ ├── armv6-android.cmake │ │ │ │ │ ├── ppc64le-linux.cmake │ │ │ │ │ ├── s390x-linux.cmake │ │ │ │ │ ├── wasm32-emscripten.cmake │ │ │ │ │ ├── x64-android.cmake │ │ │ │ │ ├── x64-freebsd.cmake │ │ │ │ │ ├── x64-ios.cmake │ │ │ │ │ ├── x64-linux-release.cmake │ │ │ │ │ ├── x64-mingw-dynamic.cmake │ │ │ │ │ ├── x64-mingw-static.cmake │ │ │ │ │ ├── x64-openbsd.cmake │ │ │ │ │ ├── x64-osx-dynamic.cmake │ │ │ │ │ ├── x64-osx-release.cmake │ │ │ │ │ ├── x64-windows-release.cmake │ │ │ │ │ ├── x64-windows-static-md.cmake │ │ │ │ │ ├── x86-android.cmake │ │ │ │ │ ├── x86-freebsd.cmake │ │ │ │ │ ├── x86-ios.cmake │ │ │ │ │ ├── x86-mingw-dynamic.cmake │ │ │ │ │ ├── x86-mingw-static.cmake │ │ │ │ │ ├── x86-uwp.cmake │ │ │ │ │ ├── x86-windows-static-md.cmake │ │ │ │ │ ├── x86-windows-static.cmake │ │ │ │ │ └── x86-windows-v120.cmake │ │ │ │ ├── x64-linux.cmake │ │ │ │ ├── x64-osx.cmake │ │ │ │ ├── x64-uwp.cmake │ │ │ │ ├── x64-windows-static.cmake │ │ │ │ ├── x64-windows.cmake │ │ │ │ └── x86-windows.cmake │ │ │ │ └── versions │ │ │ │ ├── 3- │ │ │ │ └── 3fd.json │ │ │ │ ├── 7- │ │ │ │ └── 7zip.json │ │ │ │ ├── a- │ │ │ │ ├── abseil.json │ │ │ │ ├── absent.json │ │ │ │ ├── ace.json │ │ │ │ ├── activemq-cpp.json │ │ │ │ ├── ade.json │ │ │ │ ├── advobfuscator.json │ │ │ │ ├── aixlog.json │ │ │ │ ├── akali.json │ │ │ │ ├── alac-decoder.json │ │ │ │ ├── alac.json │ │ │ │ ├── alembic.json │ │ │ │ ├── aliyun-oss-c-sdk.json │ │ │ │ ├── allegro5.json │ │ │ │ ├── alsa.json │ │ │ │ ├── ampl-asl.json │ │ │ │ ├── ampl-mp.json │ │ │ │ ├── amqpcpp.json │ │ │ │ ├── anax.json │ │ │ │ ├── angelscript.json │ │ │ │ ├── angle.json │ │ │ │ ├── antlr4.json │ │ │ │ ├── any-lite.json │ │ │ │ ├── anyrpc.json │ │ │ │ ├── aom.json │ │ │ │ ├── approval-tests-cpp.json │ │ │ │ ├── apr-util.json │ │ │ │ ├── apr.json │ │ │ │ ├── apsi.json │ │ │ │ ├── arb.json │ │ │ │ ├── arcus.json │ │ │ │ ├── argagg.json │ │ │ │ ├── argh.json │ │ │ │ ├── argparse.json │ │ │ │ ├── args.json │ │ │ │ ├── argtable2.json │ │ │ │ ├── argtable3.json │ │ │ │ ├── argumentum.json │ │ │ │ ├── aricpp.json │ │ │ │ ├── armadillo.json │ │ │ │ ├── arrayfire.json │ │ │ │ ├── arrow.json │ │ │ │ ├── ashes.json │ │ │ │ ├── asio-grpc.json │ │ │ │ ├── asio.json │ │ │ │ ├── asiosdk.json │ │ │ │ ├── asmjit.json │ │ │ │ ├── assimp.json │ │ │ │ ├── asynch.json │ │ │ │ ├── asyncplusplus.json │ │ │ │ ├── atk.json │ │ │ │ ├── atkmm.json │ │ │ │ ├── atlmfc.json │ │ │ │ ├── atomic-queue.json │ │ │ │ ├── aubio.json │ │ │ │ ├── audiofile.json │ │ │ │ ├── aurora.json │ │ │ │ ├── autobahn.json │ │ │ │ ├── autodock-vina.json │ │ │ │ ├── avcpp.json │ │ │ │ ├── avisynthplus.json │ │ │ │ ├── avro-c.json │ │ │ │ ├── avro-cpp.json │ │ │ │ ├── aws-c-auth.json │ │ │ │ ├── aws-c-cal.json │ │ │ │ ├── aws-c-common.json │ │ │ │ ├── aws-c-compression.json │ │ │ │ ├── aws-c-event-stream.json │ │ │ │ ├── aws-c-http.json │ │ │ │ ├── aws-c-io.json │ │ │ │ ├── aws-c-mqtt.json │ │ │ │ ├── aws-c-s3.json │ │ │ │ ├── aws-checksums.json │ │ │ │ ├── aws-crt-cpp.json │ │ │ │ ├── aws-lambda-cpp.json │ │ │ │ ├── aws-sdk-cpp.json │ │ │ │ ├── azmq.json │ │ │ │ ├── azure-c-shared-utility.json │ │ │ │ ├── azure-core-cpp.json │ │ │ │ ├── azure-identity-cpp.json │ │ │ │ ├── azure-iot-sdk-c.json │ │ │ │ ├── azure-kinect-sensor-sdk.json │ │ │ │ ├── azure-macro-utils-c.json │ │ │ │ ├── azure-security-attestation-cpp.json │ │ │ │ ├── azure-security-keyvault-certificates-cpp.json │ │ │ │ ├── azure-security-keyvault-common-cpp.json │ │ │ │ ├── azure-security-keyvault-keys-cpp.json │ │ │ │ ├── azure-security-keyvault-secrets-cpp.json │ │ │ │ ├── azure-storage-blobs-cpp.json │ │ │ │ ├── azure-storage-common-cpp.json │ │ │ │ ├── azure-storage-cpp.json │ │ │ │ ├── azure-storage-files-datalake-cpp.json │ │ │ │ ├── azure-storage-files-shares-cpp.json │ │ │ │ ├── azure-storage-queues-cpp.json │ │ │ │ ├── azure-uamqp-c.json │ │ │ │ ├── azure-uhttp-c.json │ │ │ │ └── azure-umqtt-c.json │ │ │ │ ├── b- │ │ │ │ ├── b64.json │ │ │ │ ├── basisu.json │ │ │ │ ├── bcg729.json │ │ │ │ ├── bddisasm.json │ │ │ │ ├── bde.json │ │ │ │ ├── bdwgc.json │ │ │ │ ├── beast.json │ │ │ │ ├── behaviortree-cpp.json │ │ │ │ ├── benchmark.json │ │ │ │ ├── bento4.json │ │ │ │ ├── berkeleydb.json │ │ │ │ ├── bext-di.json │ │ │ │ ├── bext-sml.json │ │ │ │ ├── bext-ut.json │ │ │ │ ├── bext-wintls.json │ │ │ │ ├── bfgroup-lyra.json │ │ │ │ ├── bigint.json │ │ │ │ ├── binn.json │ │ │ │ ├── bitmagic.json │ │ │ │ ├── bitserializer-cpprestjson.json │ │ │ │ ├── bitserializer-pugixml.json │ │ │ │ ├── bitserializer-rapidjson.json │ │ │ │ ├── bitserializer-rapidyaml.json │ │ │ │ ├── bitserializer.json │ │ │ │ ├── bitsery.json │ │ │ │ ├── blas.json │ │ │ │ ├── blaze.json │ │ │ │ ├── blend2d.json │ │ │ │ ├── blitz.json │ │ │ │ ├── blosc.json │ │ │ │ ├── boinc.json │ │ │ │ ├── bond.json │ │ │ │ ├── boolinq.json │ │ │ │ ├── boost-accumulators.json │ │ │ │ ├── boost-algorithm.json │ │ │ │ ├── boost-align.json │ │ │ │ ├── boost-any.json │ │ │ │ ├── boost-array.json │ │ │ │ ├── boost-asio.json │ │ │ │ ├── boost-assert.json │ │ │ │ ├── boost-assign.json │ │ │ │ ├── boost-atomic.json │ │ │ │ ├── boost-beast.json │ │ │ │ ├── boost-bimap.json │ │ │ │ ├── boost-bind.json │ │ │ │ ├── boost-build.json │ │ │ │ ├── boost-callable-traits.json │ │ │ │ ├── boost-chrono.json │ │ │ │ ├── boost-circular-buffer.json │ │ │ │ ├── boost-compatibility.json │ │ │ │ ├── boost-compute.json │ │ │ │ ├── boost-concept-check.json │ │ │ │ ├── boost-config.json │ │ │ │ ├── boost-container-hash.json │ │ │ │ ├── boost-container.json │ │ │ │ ├── boost-context.json │ │ │ │ ├── boost-contract.json │ │ │ │ ├── boost-conversion.json │ │ │ │ ├── boost-convert.json │ │ │ │ ├── boost-core.json │ │ │ │ ├── boost-coroutine.json │ │ │ │ ├── boost-coroutine2.json │ │ │ │ ├── boost-crc.json │ │ │ │ ├── boost-date-time.json │ │ │ │ ├── boost-describe.json │ │ │ │ ├── boost-detail.json │ │ │ │ ├── boost-di.json │ │ │ │ ├── boost-dll.json │ │ │ │ ├── boost-dynamic-bitset.json │ │ │ │ ├── boost-endian.json │ │ │ │ ├── boost-exception.json │ │ │ │ ├── boost-fiber.json │ │ │ │ ├── boost-filesystem.json │ │ │ │ ├── boost-flyweight.json │ │ │ │ ├── boost-foreach.json │ │ │ │ ├── boost-format.json │ │ │ │ ├── boost-function-types.json │ │ │ │ ├── boost-function.json │ │ │ │ ├── boost-functional.json │ │ │ │ ├── boost-fusion.json │ │ │ │ ├── boost-geometry.json │ │ │ │ ├── boost-gil.json │ │ │ │ ├── boost-graph-parallel.json │ │ │ │ ├── boost-graph.json │ │ │ │ ├── boost-hana.json │ │ │ │ ├── boost-heap.json │ │ │ │ ├── boost-histogram.json │ │ │ │ ├── boost-hof.json │ │ │ │ ├── boost-icl.json │ │ │ │ ├── boost-integer.json │ │ │ │ ├── boost-interprocess.json │ │ │ │ ├── boost-interval.json │ │ │ │ ├── boost-intrusive.json │ │ │ │ ├── boost-io.json │ │ │ │ ├── boost-iostreams.json │ │ │ │ ├── boost-iterator.json │ │ │ │ ├── boost-json.json │ │ │ │ ├── boost-lambda.json │ │ │ │ ├── boost-lambda2.json │ │ │ │ ├── boost-leaf.json │ │ │ │ ├── boost-lexical-cast.json │ │ │ │ ├── boost-local-function.json │ │ │ │ ├── boost-locale.json │ │ │ │ ├── boost-lockfree.json │ │ │ │ ├── boost-log.json │ │ │ │ ├── boost-logic.json │ │ │ │ ├── boost-math.json │ │ │ │ ├── boost-metaparse.json │ │ │ │ ├── boost-modular-build-helper.json │ │ │ │ ├── boost-move.json │ │ │ │ ├── boost-mp11.json │ │ │ │ ├── boost-mpi.json │ │ │ │ ├── boost-mpl.json │ │ │ │ ├── boost-msm.json │ │ │ │ ├── boost-multi-array.json │ │ │ │ ├── boost-multi-index.json │ │ │ │ ├── boost-multiprecision.json │ │ │ │ ├── boost-nowide.json │ │ │ │ ├── boost-numeric-conversion.json │ │ │ │ ├── boost-odeint.json │ │ │ │ ├── boost-optional.json │ │ │ │ ├── boost-outcome.json │ │ │ │ ├── boost-parameter-python.json │ │ │ │ ├── boost-parameter.json │ │ │ │ ├── boost-pfr.json │ │ │ │ ├── boost-phoenix.json │ │ │ │ ├── boost-poly-collection.json │ │ │ │ ├── boost-polygon.json │ │ │ │ ├── boost-pool.json │ │ │ │ ├── boost-predef.json │ │ │ │ ├── boost-preprocessor.json │ │ │ │ ├── boost-process.json │ │ │ │ ├── boost-program-options.json │ │ │ │ ├── boost-property-map-parallel.json │ │ │ │ ├── boost-property-map.json │ │ │ │ ├── boost-property-tree.json │ │ │ │ ├── boost-proto.json │ │ │ │ ├── boost-ptr-container.json │ │ │ │ ├── boost-python.json │ │ │ │ ├── boost-qvm.json │ │ │ │ ├── boost-random.json │ │ │ │ ├── boost-range.json │ │ │ │ ├── boost-ratio.json │ │ │ │ ├── boost-rational.json │ │ │ │ ├── boost-regex.json │ │ │ │ ├── boost-safe-numerics.json │ │ │ │ ├── boost-scope-exit.json │ │ │ │ ├── boost-serialization.json │ │ │ │ ├── boost-signals2.json │ │ │ │ ├── boost-smart-ptr.json │ │ │ │ ├── boost-sort.json │ │ │ │ ├── boost-spirit.json │ │ │ │ ├── boost-stacktrace.json │ │ │ │ ├── boost-statechart.json │ │ │ │ ├── boost-static-assert.json │ │ │ │ ├── boost-static-string.json │ │ │ │ ├── boost-stl-interfaces.json │ │ │ │ ├── boost-system.json │ │ │ │ ├── boost-test.json │ │ │ │ ├── boost-thread.json │ │ │ │ ├── boost-throw-exception.json │ │ │ │ ├── boost-timer.json │ │ │ │ ├── boost-tokenizer.json │ │ │ │ ├── boost-tti.json │ │ │ │ ├── boost-tuple.json │ │ │ │ ├── boost-type-erasure.json │ │ │ │ ├── boost-type-index.json │ │ │ │ ├── boost-type-traits.json │ │ │ │ ├── boost-typeof.json │ │ │ │ ├── boost-ublas.json │ │ │ │ ├── boost-uninstall.json │ │ │ │ ├── boost-units.json │ │ │ │ ├── boost-unordered.json │ │ │ │ ├── boost-utility.json │ │ │ │ ├── boost-uuid.json │ │ │ │ ├── boost-variant.json │ │ │ │ ├── boost-variant2.json │ │ │ │ ├── boost-vcpkg-helpers.json │ │ │ │ ├── boost-vmd.json │ │ │ │ ├── boost-wave.json │ │ │ │ ├── boost-winapi.json │ │ │ │ ├── boost-xpressive.json │ │ │ │ ├── boost-yap.json │ │ │ │ ├── boost.json │ │ │ │ ├── boringssl.json │ │ │ │ ├── botan.json │ │ │ │ ├── box2d.json │ │ │ │ ├── braft.json │ │ │ │ ├── breakpad.json │ │ │ │ ├── brigand.json │ │ │ │ ├── brotli.json │ │ │ │ ├── brpc.json │ │ │ │ ├── brunocodutra-metal.json │ │ │ │ ├── brynet.json │ │ │ │ ├── bshoshany-thread-pool.json │ │ │ │ ├── bsio.json │ │ │ │ ├── buck-yeh-bux-mariadb-client.json │ │ │ │ ├── buck-yeh-bux.json │ │ │ │ ├── bullet3.json │ │ │ │ ├── bustache.json │ │ │ │ ├── butteraugli.json │ │ │ │ ├── byte-lite.json │ │ │ │ └── bzip2.json │ │ │ │ ├── baseline.json │ │ │ │ ├── c- │ │ │ │ ├── c-ares.json │ │ │ │ ├── c-dbg-macro.json │ │ │ │ ├── c4core.json │ │ │ │ ├── c89stringutils.json │ │ │ │ ├── caf.json │ │ │ │ ├── caffe2.json │ │ │ │ ├── cairo.json │ │ │ │ ├── cairomm.json │ │ │ │ ├── calceph.json │ │ │ │ ├── camport3.json │ │ │ │ ├── capnproto.json │ │ │ │ ├── capstone.json │ │ │ │ ├── cargs.json │ │ │ │ ├── cartographer.json │ │ │ │ ├── casclib.json │ │ │ │ ├── catch-classic.json │ │ │ │ ├── catch.json │ │ │ │ ├── catch2.json │ │ │ │ ├── cccapstone.json │ │ │ │ ├── ccd.json │ │ │ │ ├── ccfits.json │ │ │ │ ├── cctag.json │ │ │ │ ├── cctz.json │ │ │ │ ├── celero.json │ │ │ │ ├── cello.json │ │ │ │ ├── cereal.json │ │ │ │ ├── ceres.json │ │ │ │ ├── cfitsio.json │ │ │ │ ├── cgal.json │ │ │ │ ├── cgicc.json │ │ │ │ ├── cgl.json │ │ │ │ ├── cgltf.json │ │ │ │ ├── cgns.json │ │ │ │ ├── chaiscript.json │ │ │ │ ├── chakracore.json │ │ │ │ ├── charls.json │ │ │ │ ├── chartdir.json │ │ │ │ ├── check.json │ │ │ │ ├── chipmunk.json │ │ │ │ ├── chmlib.json │ │ │ │ ├── chromaprint.json │ │ │ │ ├── chromium-base.json │ │ │ │ ├── cimg.json │ │ │ │ ├── cityhash.json │ │ │ │ ├── civetweb.json │ │ │ │ ├── cjson.json │ │ │ │ ├── clamav.json │ │ │ │ ├── clapack.json │ │ │ │ ├── clara.json │ │ │ │ ├── clblas.json │ │ │ │ ├── clblast.json │ │ │ │ ├── clfft.json │ │ │ │ ├── cli.json │ │ │ │ ├── cli11.json │ │ │ │ ├── clickhouse-cpp.json │ │ │ │ ├── clipp.json │ │ │ │ ├── clockutils.json │ │ │ │ ├── clp.json │ │ │ │ ├── clrng.json │ │ │ │ ├── clue.json │ │ │ │ ├── cmark.json │ │ │ │ ├── cmcstl2.json │ │ │ │ ├── cminpack.json │ │ │ │ ├── cmocka.json │ │ │ │ ├── cnats.json │ │ │ │ ├── cnl.json │ │ │ │ ├── co.json │ │ │ │ ├── cocoyaxi.json │ │ │ │ ├── coin.json │ │ │ │ ├── coinutils.json │ │ │ │ ├── collada-dom.json │ │ │ │ ├── colmap.json │ │ │ │ ├── color-console.json │ │ │ │ ├── comms-ublox.json │ │ │ │ ├── comms.json │ │ │ │ ├── commsdsl.json │ │ │ │ ├── compoundfilereader.json │ │ │ │ ├── concurrencpp.json │ │ │ │ ├── concurrentqueue.json │ │ │ │ ├── console-bridge.json │ │ │ │ ├── constexpr-contracts.json │ │ │ │ ├── constexpr.json │ │ │ │ ├── continuable.json │ │ │ │ ├── coolprop.json │ │ │ │ ├── coroutine.json │ │ │ │ ├── corrade.json │ │ │ │ ├── cpp-base64.json │ │ │ │ ├── cpp-httplib.json │ │ │ │ ├── cpp-ipc.json │ │ │ │ ├── cpp-jwt.json │ │ │ │ ├── cpp-netlib.json │ │ │ │ ├── cpp-peglib.json │ │ │ │ ├── cpp-redis.json │ │ │ │ ├── cpp-taskflow.json │ │ │ │ ├── cpp-timsort.json │ │ │ │ ├── cppad.json │ │ │ │ ├── cppcms.json │ │ │ │ ├── cppcodec.json │ │ │ │ ├── cppcoro.json │ │ │ │ ├── cppfs.json │ │ │ │ ├── cppgraphqlgen.json │ │ │ │ ├── cppitertools.json │ │ │ │ ├── cppkafka.json │ │ │ │ ├── cppmicroservices.json │ │ │ │ ├── cpprestsdk.json │ │ │ │ ├── cpptoml.json │ │ │ │ ├── cppunit.json │ │ │ │ ├── cpputest.json │ │ │ │ ├── cppwinrt.json │ │ │ │ ├── cppxaml.json │ │ │ │ ├── cppzmq.json │ │ │ │ ├── cpr.json │ │ │ │ ├── cpu-features.json │ │ │ │ ├── cpuid.json │ │ │ │ ├── cpuinfo.json │ │ │ │ ├── cr.json │ │ │ │ ├── crashpad.json │ │ │ │ ├── crashrpt.json │ │ │ │ ├── crc32c.json │ │ │ │ ├── crfsuite.json │ │ │ │ ├── croncpp.json │ │ │ │ ├── crossguid.json │ │ │ │ ├── crow.json │ │ │ │ ├── cryptopp.json │ │ │ │ ├── cspice.json │ │ │ │ ├── ctbignum.json │ │ │ │ ├── ctemplate.json │ │ │ │ ├── ctp.json │ │ │ │ ├── ctre.json │ │ │ │ ├── cub.json │ │ │ │ ├── cuda.json │ │ │ │ ├── cudnn.json │ │ │ │ ├── cunit.json │ │ │ │ ├── curl.json │ │ │ │ ├── curlpp.json │ │ │ │ ├── cute-headers.json │ │ │ │ ├── cutelyst2.json │ │ │ │ ├── cwalk.json │ │ │ │ ├── cxxopts.json │ │ │ │ └── czmq.json │ │ │ │ ├── d- │ │ │ │ ├── d3d12-memory-allocator.json │ │ │ │ ├── d3dx12.json │ │ │ │ ├── darknet.json │ │ │ │ ├── darts-clone.json │ │ │ │ ├── dartsim.json │ │ │ │ ├── dataframe.json │ │ │ │ ├── date.json │ │ │ │ ├── dav1d.json │ │ │ │ ├── daw-header-libraries.json │ │ │ │ ├── daw-json-link.json │ │ │ │ ├── daw-utf-range.json │ │ │ │ ├── dbg-macro.json │ │ │ │ ├── dbghelp.json │ │ │ │ ├── dbow2.json │ │ │ │ ├── dbow3.json │ │ │ │ ├── dcmtk.json │ │ │ │ ├── debug-assert.json │ │ │ │ ├── decimal-for-cpp.json │ │ │ │ ├── detours.json │ │ │ │ ├── devicenameresolver.json │ │ │ │ ├── devil.json │ │ │ │ ├── dimcli.json │ │ │ │ ├── directx-headers.json │ │ │ │ ├── directxmath.json │ │ │ │ ├── directxmesh.json │ │ │ │ ├── directxsdk.json │ │ │ │ ├── directxtex.json │ │ │ │ ├── directxtk.json │ │ │ │ ├── directxtk12.json │ │ │ │ ├── dirent.json │ │ │ │ ├── discord-game-sdk.json │ │ │ │ ├── discord-rpc.json │ │ │ │ ├── discordcoreapi.json │ │ │ │ ├── discount.json │ │ │ │ ├── discreture.json │ │ │ │ ├── distorm.json │ │ │ │ ├── dlfcn-win32.json │ │ │ │ ├── dlib.json │ │ │ │ ├── dmlc.json │ │ │ │ ├── docopt.json │ │ │ │ ├── doctest.json │ │ │ │ ├── double-conversion.json │ │ │ │ ├── dpdk.json │ │ │ │ ├── draco.json │ │ │ │ ├── drlibs.json │ │ │ │ ├── drogon.json │ │ │ │ ├── dstorage.json │ │ │ │ ├── dtl.json │ │ │ │ ├── duckx.json │ │ │ │ ├── duilib.json │ │ │ │ ├── duktape.json │ │ │ │ ├── dx.json │ │ │ │ ├── dxsdk-d3dx.json │ │ │ │ └── dxut.json │ │ │ │ ├── e- │ │ │ │ ├── eabase.json │ │ │ │ ├── earcut-hpp.json │ │ │ │ ├── eastl.json │ │ │ │ ├── easycl.json │ │ │ │ ├── easyhook.json │ │ │ │ ├── easyloggingpp.json │ │ │ │ ├── eathread.json │ │ │ │ ├── ebml.json │ │ │ │ ├── ecm.json │ │ │ │ ├── ecos.json │ │ │ │ ├── ecsutil.json │ │ │ │ ├── edlib.json │ │ │ │ ├── effects11.json │ │ │ │ ├── effolkronium-random.json │ │ │ │ ├── efsw.json │ │ │ │ ├── egl-registry.json │ │ │ │ ├── eigen3.json │ │ │ │ ├── elfio.json │ │ │ │ ├── elfutils.json │ │ │ │ ├── embree2.json │ │ │ │ ├── embree3.json │ │ │ │ ├── enet.json │ │ │ │ ├── ensmallen.json │ │ │ │ ├── entityx.json │ │ │ │ ├── entt.json │ │ │ │ ├── epsilon.json │ │ │ │ ├── esaxx.json │ │ │ │ ├── eve.json │ │ │ │ ├── eventpp.json │ │ │ │ ├── evpp.json │ │ │ │ ├── exiv2.json │ │ │ │ ├── expat.json │ │ │ │ ├── expected-lite.json │ │ │ │ ├── exprtk.json │ │ │ │ └── ezc3d.json │ │ │ │ ├── f- │ │ │ │ ├── faad2.json │ │ │ │ ├── fadbad.json │ │ │ │ ├── faiss.json │ │ │ │ ├── fakeit.json │ │ │ │ ├── fann.json │ │ │ │ ├── farmhash.json │ │ │ │ ├── fast-cpp-csv-parser.json │ │ │ │ ├── fast-float.json │ │ │ │ ├── fastcdr.json │ │ │ │ ├── fastcgi.json │ │ │ │ ├── fastfeat.json │ │ │ │ ├── fastlz.json │ │ │ │ ├── fastor.json │ │ │ │ ├── fastrtps.json │ │ │ │ ├── fbgemm.json │ │ │ │ ├── fbthrift.json │ │ │ │ ├── fcl.json │ │ │ │ ├── fdk-aac.json │ │ │ │ ├── fdlibm.json │ │ │ │ ├── ffmpeg.json │ │ │ │ ├── ffnvcodec.json │ │ │ │ ├── fftw3.json │ │ │ │ ├── fftwpp.json │ │ │ │ ├── field3d.json │ │ │ │ ├── fixed-string.json │ │ │ │ ├── fizz.json │ │ │ │ ├── flann.json │ │ │ │ ├── flash-runtime-extensions.json │ │ │ │ ├── flashlight-cpu.json │ │ │ │ ├── flashlight-cuda.json │ │ │ │ ├── flatbuffers.json │ │ │ │ ├── flint.json │ │ │ │ ├── fltk.json │ │ │ │ ├── fluidlite.json │ │ │ │ ├── fluidsynth.json │ │ │ │ ├── fmem.json │ │ │ │ ├── fmi4cpp.json │ │ │ │ ├── fmilib.json │ │ │ │ ├── fmt.json │ │ │ │ ├── folly.json │ │ │ │ ├── font-chef.json │ │ │ │ ├── fontconfig.json │ │ │ │ ├── foonathan-memory.json │ │ │ │ ├── forest.json │ │ │ │ ├── forge.json │ │ │ │ ├── foxi.json │ │ │ │ ├── fp16.json │ │ │ │ ├── fplus.json │ │ │ │ ├── freealut.json │ │ │ │ ├── freeglut.json │ │ │ │ ├── freeimage.json │ │ │ │ ├── freeopcua.json │ │ │ │ ├── freerdp.json │ │ │ │ ├── freetds.json │ │ │ │ ├── freetype-gl.json │ │ │ │ ├── freetype.json │ │ │ │ ├── freexl.json │ │ │ │ ├── fribidi.json │ │ │ │ ├── frozen.json │ │ │ │ ├── frugally-deep.json │ │ │ │ ├── fruit.json │ │ │ │ ├── ftgl.json │ │ │ │ ├── ftxui.json │ │ │ │ ├── function2.json │ │ │ │ ├── functions-framework-cpp.json │ │ │ │ ├── fuzzylite.json │ │ │ │ └── fxdiv.json │ │ │ │ ├── g- │ │ │ │ ├── g2o.json │ │ │ │ ├── g3log.json │ │ │ │ ├── gainput.json │ │ │ │ ├── gamedev-framework.json │ │ │ │ ├── gamenetworkingsockets.json │ │ │ │ ├── gamma.json │ │ │ │ ├── gasol.json │ │ │ │ ├── gaussianlib.json │ │ │ │ ├── gazebo.json │ │ │ │ ├── gcem.json │ │ │ │ ├── gdal.json │ │ │ │ ├── gdcm.json │ │ │ │ ├── gdcm2.json │ │ │ │ ├── gdk-pixbuf.json │ │ │ │ ├── gemmlowp.json │ │ │ │ ├── genann.json │ │ │ │ ├── geogram.json │ │ │ │ ├── geographiclib.json │ │ │ │ ├── geos.json │ │ │ │ ├── geotrans.json │ │ │ │ ├── getdns.json │ │ │ │ ├── getopt-win32.json │ │ │ │ ├── getopt.json │ │ │ │ ├── gettext.json │ │ │ │ ├── gettimeofday.json │ │ │ │ ├── gflags.json │ │ │ │ ├── ghc-filesystem.json │ │ │ │ ├── gherkin-c.json │ │ │ │ ├── giflib.json │ │ │ │ ├── ginkgo.json │ │ │ │ ├── gl2ps.json │ │ │ │ ├── gl3w.json │ │ │ │ ├── glad.json │ │ │ │ ├── glbinding.json │ │ │ │ ├── glew.json │ │ │ │ ├── glfw3.json │ │ │ │ ├── gli.json │ │ │ │ ├── glib.json │ │ │ │ ├── glibmm.json │ │ │ │ ├── glm.json │ │ │ │ ├── globjects.json │ │ │ │ ├── glog.json │ │ │ │ ├── gloo.json │ │ │ │ ├── glslang.json │ │ │ │ ├── glui.json │ │ │ │ ├── gmime.json │ │ │ │ ├── gmmlib.json │ │ │ │ ├── gmp.json │ │ │ │ ├── gmsh.json │ │ │ │ ├── gobject-introspection.json │ │ │ │ ├── google-cloud-cpp-common.json │ │ │ │ ├── google-cloud-cpp-spanner.json │ │ │ │ ├── google-cloud-cpp.json │ │ │ │ ├── googleapis.json │ │ │ │ ├── gperf.json │ │ │ │ ├── gperftools.json │ │ │ │ ├── gpgme.json │ │ │ │ ├── gppanel.json │ │ │ │ ├── graphene.json │ │ │ │ ├── graphicsmagick.json │ │ │ │ ├── graphite2.json │ │ │ │ ├── graphqlparser.json │ │ │ │ ├── graphviz.json │ │ │ │ ├── greatest.json │ │ │ │ ├── grpc.json │ │ │ │ ├── grppi.json │ │ │ │ ├── gsl-lite.json │ │ │ │ ├── gsl.json │ │ │ │ ├── gsoap.json │ │ │ │ ├── gst-rtsp-server.json │ │ │ │ ├── gstreamer.json │ │ │ │ ├── gtest.json │ │ │ │ ├── gtk.json │ │ │ │ ├── gtkmm.json │ │ │ │ ├── gtl.json │ │ │ │ ├── gts.json │ │ │ │ ├── guetzli.json │ │ │ │ ├── guilite.json │ │ │ │ ├── gumbo.json │ │ │ │ └── gzip-hpp.json │ │ │ │ ├── h- │ │ │ │ ├── h3.json │ │ │ │ ├── h5py-lzf.json │ │ │ │ ├── halide.json │ │ │ │ ├── happly.json │ │ │ │ ├── harfbuzz.json │ │ │ │ ├── hayai.json │ │ │ │ ├── hazelcast-cpp-client.json │ │ │ │ ├── hdf5.json │ │ │ │ ├── healpix.json │ │ │ │ ├── hedley.json │ │ │ │ ├── hexl.json │ │ │ │ ├── hffix.json │ │ │ │ ├── hfsm2.json │ │ │ │ ├── hidapi.json │ │ │ │ ├── highfive.json │ │ │ │ ├── highway.json │ │ │ │ ├── hiredis.json │ │ │ │ ├── hps.json │ │ │ │ ├── hpx.json │ │ │ │ ├── http-parser.json │ │ │ │ ├── hungarian.json │ │ │ │ ├── hunspell.json │ │ │ │ ├── hwloc.json │ │ │ │ ├── hyperscan.json │ │ │ │ ├── hypodermic.json │ │ │ │ └── hypre.json │ │ │ │ ├── i- │ │ │ │ ├── icu.json │ │ │ │ ├── ideviceinstaller.json │ │ │ │ ├── idevicerestore.json │ │ │ │ ├── if97.json │ │ │ │ ├── igloo.json │ │ │ │ ├── ignition-cmake0.json │ │ │ │ ├── ignition-cmake2.json │ │ │ │ ├── ignition-common1.json │ │ │ │ ├── ignition-common3.json │ │ │ │ ├── ignition-fuel-tools1.json │ │ │ │ ├── ignition-fuel-tools4.json │ │ │ │ ├── ignition-math4.json │ │ │ │ ├── ignition-math6.json │ │ │ │ ├── ignition-modularscripts.json │ │ │ │ ├── ignition-msgs1.json │ │ │ │ ├── ignition-msgs5.json │ │ │ │ ├── ignition-msgs6.json │ │ │ │ ├── ignition-plugin1.json │ │ │ │ ├── ignition-transport4.json │ │ │ │ ├── ignition-transport8.json │ │ │ │ ├── ignition-transport9.json │ │ │ │ ├── igraph.json │ │ │ │ ├── iir1.json │ │ │ │ ├── ijg-libjpeg.json │ │ │ │ ├── ilmbase.json │ │ │ │ ├── imath.json │ │ │ │ ├── imgui-sfml.json │ │ │ │ ├── imgui.json │ │ │ │ ├── imguizmo.json │ │ │ │ ├── immer.json │ │ │ │ ├── implot.json │ │ │ │ ├── indicators.json │ │ │ │ ├── influxdb-cxx.json │ │ │ │ ├── infoware.json │ │ │ │ ├── inih.json │ │ │ │ ├── iniparser.json │ │ │ │ ├── inja.json │ │ │ │ ├── intel-ipsec.json │ │ │ │ ├── intel-mkl.json │ │ │ │ ├── intelrdfpmathlib.json │ │ │ │ ├── io2d.json │ │ │ │ ├── irrlicht.json │ │ │ │ ├── irrxml.json │ │ │ │ ├── isal.json │ │ │ │ ├── ismrmrd.json │ │ │ │ ├── itk.json │ │ │ │ ├── itpp.json │ │ │ │ └── ixwebsocket.json │ │ │ │ ├── j- │ │ │ │ ├── jack2.json │ │ │ │ ├── jaeger-client-cpp.json │ │ │ │ ├── jansson.json │ │ │ │ ├── jasper.json │ │ │ │ ├── jbig2dec.json │ │ │ │ ├── jbigkit.json │ │ │ │ ├── jemalloc.json │ │ │ │ ├── jinja2cpplight.json │ │ │ │ ├── josuttis-jthread.json │ │ │ │ ├── jsmn.json │ │ │ │ ├── json-c.json │ │ │ │ ├── json-dto.json │ │ │ │ ├── json-schema-validator.json │ │ │ │ ├── json-spirit.json │ │ │ │ ├── json11.json │ │ │ │ ├── json5-parser.json │ │ │ │ ├── jsoncons.json │ │ │ │ ├── jsoncpp.json │ │ │ │ ├── jsonnet.json │ │ │ │ ├── jwt-cpp.json │ │ │ │ └── jxrlib.json │ │ │ │ ├── k- │ │ │ │ ├── kangaru.json │ │ │ │ ├── kcp.json │ │ │ │ ├── kd-soap.json │ │ │ │ ├── kdbindings.json │ │ │ │ ├── kddockwidgets.json │ │ │ │ ├── kealib.json │ │ │ │ ├── kenlm.json │ │ │ │ ├── keystone.json │ │ │ │ ├── kf5archive.json │ │ │ │ ├── kf5attica.json │ │ │ │ ├── kf5auth.json │ │ │ │ ├── kf5bookmarks.json │ │ │ │ ├── kf5codecs.json │ │ │ │ ├── kf5completion.json │ │ │ │ ├── kf5config.json │ │ │ │ ├── kf5configwidgets.json │ │ │ │ ├── kf5coreaddons.json │ │ │ │ ├── kf5crash.json │ │ │ │ ├── kf5dbusaddons.json │ │ │ │ ├── kf5declarative.json │ │ │ │ ├── kf5diagram.json │ │ │ │ ├── kf5globalaccel.json │ │ │ │ ├── kf5guiaddons.json │ │ │ │ ├── kf5holidays.json │ │ │ │ ├── kf5i18n.json │ │ │ │ ├── kf5iconthemes.json │ │ │ │ ├── kf5itemmodels.json │ │ │ │ ├── kf5itemviews.json │ │ │ │ ├── kf5jobwidgets.json │ │ │ │ ├── kf5kcmutils.json │ │ │ │ ├── kf5kio.json │ │ │ │ ├── kf5newstuff.json │ │ │ │ ├── kf5notifications.json │ │ │ │ ├── kf5package.json │ │ │ │ ├── kf5plotting.json │ │ │ │ ├── kf5service.json │ │ │ │ ├── kf5solid.json │ │ │ │ ├── kf5sonnet.json │ │ │ │ ├── kf5syntaxhighlighting.json │ │ │ │ ├── kf5textwidgets.json │ │ │ │ ├── kf5wallet.json │ │ │ │ ├── kf5widgetsaddons.json │ │ │ │ ├── kf5windowsystem.json │ │ │ │ ├── kf5xmlgui.json │ │ │ │ ├── kfr.json │ │ │ │ ├── kinectsdk1.json │ │ │ │ ├── kinectsdk2.json │ │ │ │ ├── kissfft.json │ │ │ │ ├── klein.json │ │ │ │ ├── knet.json │ │ │ │ ├── krabsetw.json │ │ │ │ ├── ktx.json │ │ │ │ ├── kubazip.json │ │ │ │ ├── kubernetes.json │ │ │ │ ├── kuku.json │ │ │ │ ├── kvasir-mpl.json │ │ │ │ └── kwsys.json │ │ │ │ ├── l- │ │ │ │ ├── lager.json │ │ │ │ ├── lapack-reference.json │ │ │ │ ├── lapack.json │ │ │ │ ├── lastools.json │ │ │ │ ├── laszip.json │ │ │ │ ├── launch-darkly-server.json │ │ │ │ ├── lazy-importer.json │ │ │ │ ├── lcm.json │ │ │ │ ├── lcms.json │ │ │ │ ├── leaf.json │ │ │ │ ├── lemon.json │ │ │ │ ├── leptonica.json │ │ │ │ ├── lerc.json │ │ │ │ ├── lest.json │ │ │ │ ├── leveldb.json │ │ │ │ ├── levmar.json │ │ │ │ ├── libaaplus.json │ │ │ │ ├── libaiff.json │ │ │ │ ├── libalkimia.json │ │ │ │ ├── libao.json │ │ │ │ ├── libarchive.json │ │ │ │ ├── libass.json │ │ │ │ ├── libassuan.json │ │ │ │ ├── libatomic-ops.json │ │ │ │ ├── libavif.json │ │ │ │ ├── libb2.json │ │ │ │ ├── libbacktrace.json │ │ │ │ ├── libbf.json │ │ │ │ ├── libbson.json │ │ │ │ ├── libcanberra.json │ │ │ │ ├── libcbor.json │ │ │ │ ├── libcds.json │ │ │ │ ├── libcerf.json │ │ │ │ ├── libconfig.json │ │ │ │ ├── libconfuse.json │ │ │ │ ├── libcopp.json │ │ │ │ ├── libcpplocate.json │ │ │ │ ├── libcrafter.json │ │ │ │ ├── libcroco.json │ │ │ │ ├── libcuckoo.json │ │ │ │ ├── libcurl-simple-https.json │ │ │ │ ├── libdatachannel.json │ │ │ │ ├── libdatrie.json │ │ │ │ ├── libdc1394.json │ │ │ │ ├── libde265.json │ │ │ │ ├── libdisasm.json │ │ │ │ ├── libdivide.json │ │ │ │ ├── libdjinterop.json │ │ │ │ ├── libdshowcapture.json │ │ │ │ ├── libe57.json │ │ │ │ ├── libe57format.json │ │ │ │ ├── libebur128.json │ │ │ │ ├── libepoxy.json │ │ │ │ ├── libevent.json │ │ │ │ ├── libevhtp.json │ │ │ │ ├── libexif.json │ │ │ │ ├── libfabric.json │ │ │ │ ├── libffi.json │ │ │ │ ├── libfido2.json │ │ │ │ ├── libflac.json │ │ │ │ ├── libfort.json │ │ │ │ ├── libfreenect2.json │ │ │ │ ├── libftdi.json │ │ │ │ ├── libftdi1.json │ │ │ │ ├── libgcrypt.json │ │ │ │ ├── libgd.json │ │ │ │ ├── libgeotiff.json │ │ │ │ ├── libgit2.json │ │ │ │ ├── libgnutls.json │ │ │ │ ├── libgo.json │ │ │ │ ├── libgpg-error.json │ │ │ │ ├── libgpiod.json │ │ │ │ ├── libgpod.json │ │ │ │ ├── libgta.json │ │ │ │ ├── libguarded.json │ │ │ │ ├── libgwenhywfar.json │ │ │ │ ├── libgxps.json │ │ │ │ ├── libharu.json │ │ │ │ ├── libhdfs3.json │ │ │ │ ├── libheif.json │ │ │ │ ├── libhsplasma.json │ │ │ │ ├── libhv.json │ │ │ │ ├── libhydrogen.json │ │ │ │ ├── libical.json │ │ │ │ ├── libiconv.json │ │ │ │ ├── libics.json │ │ │ │ ├── libideviceactivation.json │ │ │ │ ├── libidn2.json │ │ │ │ ├── libigl.json │ │ │ │ ├── libilbc.json │ │ │ │ ├── libimobiledevice.json │ │ │ │ ├── libirecovery.json │ │ │ │ ├── libjpeg-turbo.json │ │ │ │ ├── libjuice.json │ │ │ │ ├── libjxl.json │ │ │ │ ├── libkeyfinder.json │ │ │ │ ├── libkml.json │ │ │ │ ├── liblas.json │ │ │ │ ├── liblbfgs.json │ │ │ │ ├── liblemon.json │ │ │ │ ├── liblinear.json │ │ │ │ ├── liblo.json │ │ │ │ ├── liblsl.json │ │ │ │ ├── liblzma.json │ │ │ │ ├── libmad.json │ │ │ │ ├── libmagic.json │ │ │ │ ├── libmariadb.json │ │ │ │ ├── libmaxminddb.json │ │ │ │ ├── libmediainfo.json │ │ │ │ ├── libmesh.json │ │ │ │ ├── libmicrohttpd.json │ │ │ │ ├── libmikmod.json │ │ │ │ ├── libmodbus.json │ │ │ │ ├── libmodman.json │ │ │ │ ├── libmodplug.json │ │ │ │ ├── libmorton.json │ │ │ │ ├── libmount.json │ │ │ │ ├── libmpeg2.json │ │ │ │ ├── libmspack.json │ │ │ │ ├── libmt32emu.json │ │ │ │ ├── libmupdf.json │ │ │ │ ├── libmysql.json │ │ │ │ ├── libnice.json │ │ │ │ ├── libnoise.json │ │ │ │ ├── libnop.json │ │ │ │ ├── libodb-boost.json │ │ │ │ ├── libodb-mysql.json │ │ │ │ ├── libodb-pgsql.json │ │ │ │ ├── libodb-sqlite.json │ │ │ │ ├── libodb.json │ │ │ │ ├── libogg.json │ │ │ │ ├── libopenmpt.json │ │ │ │ ├── libopensp.json │ │ │ │ ├── libopusenc.json │ │ │ │ ├── libosip2.json │ │ │ │ ├── libosmium.json │ │ │ │ ├── libosmscout.json │ │ │ │ ├── libp7-baical.json │ │ │ │ ├── libp7client.json │ │ │ │ ├── libpcap.json │ │ │ │ ├── libpff.json │ │ │ │ ├── libplist.json │ │ │ │ ├── libpmemobj-cpp.json │ │ │ │ ├── libpng.json │ │ │ │ ├── libpopt.json │ │ │ │ ├── libpq.json │ │ │ │ ├── libpqxx.json │ │ │ │ ├── libprotobuf-mutator.json │ │ │ │ ├── libproxy.json │ │ │ │ ├── libqcow.json │ │ │ │ ├── libqglviewer.json │ │ │ │ ├── libqrencode.json │ │ │ │ ├── librabbitmq.json │ │ │ │ ├── libraqm.json │ │ │ │ ├── libraw.json │ │ │ │ ├── librdkafka.json │ │ │ │ ├── libressl.json │ │ │ │ ├── librsvg.json │ │ │ │ ├── librsync.json │ │ │ │ ├── librtmp.json │ │ │ │ ├── librttopo.json │ │ │ │ ├── libsamplerate.json │ │ │ │ ├── libsass.json │ │ │ │ ├── libsbml.json │ │ │ │ ├── libsbsms.json │ │ │ │ ├── libsecret.json │ │ │ │ ├── libsercomm.json │ │ │ │ ├── libsigcpp-3.json │ │ │ │ ├── libsigcpp.json │ │ │ │ ├── libslirp.json │ │ │ │ ├── libsmb2.json │ │ │ │ ├── libsndfile.json │ │ │ │ ├── libsnoretoast.json │ │ │ │ ├── libsodium.json │ │ │ │ ├── libsoundio.json │ │ │ │ ├── libspatialindex.json │ │ │ │ ├── libspatialite.json │ │ │ │ ├── libspnav.json │ │ │ │ ├── libsquish.json │ │ │ │ ├── libsrt.json │ │ │ │ ├── libsrtp.json │ │ │ │ ├── libssh.json │ │ │ │ ├── libssh2.json │ │ │ │ ├── libstemmer.json │ │ │ │ ├── libstk.json │ │ │ │ ├── libsvm.json │ │ │ │ ├── libtasn1.json │ │ │ │ ├── libtcod.json │ │ │ │ ├── libtess2.json │ │ │ │ ├── libtheora.json │ │ │ │ ├── libtins.json │ │ │ │ ├── libtomcrypt.json │ │ │ │ ├── libtommath.json │ │ │ │ ├── libtorrent.json │ │ │ │ ├── libu2f-server.json │ │ │ │ ├── libudis86.json │ │ │ │ ├── libudns.json │ │ │ │ ├── libui.json │ │ │ │ ├── libunibreak.json │ │ │ │ ├── libunifex.json │ │ │ │ ├── libunistring.json │ │ │ │ ├── liburing.json │ │ │ │ ├── libusb-win32.json │ │ │ │ ├── libusb.json │ │ │ │ ├── libusbmuxd.json │ │ │ │ ├── libuuid.json │ │ │ │ ├── libuv.json │ │ │ │ ├── libuvc.json │ │ │ │ ├── libvmdk.json │ │ │ │ ├── libvorbis.json │ │ │ │ ├── libvpx.json │ │ │ │ ├── libwandio.json │ │ │ │ ├── libwebm.json │ │ │ │ ├── libwebp.json │ │ │ │ ├── libwebsockets.json │ │ │ │ ├── libxdiff.json │ │ │ │ ├── libxlsxwriter.json │ │ │ │ ├── libxml2.json │ │ │ │ ├── libxmlmm.json │ │ │ │ ├── libxmlpp.json │ │ │ │ ├── libxmp-lite.json │ │ │ │ ├── libxslt.json │ │ │ │ ├── libyaml.json │ │ │ │ ├── libyuv.json │ │ │ │ ├── libzen.json │ │ │ │ ├── libzip.json │ │ │ │ ├── libzippp.json │ │ │ │ ├── licensepp.json │ │ │ │ ├── lilv.json │ │ │ │ ├── linalg.json │ │ │ │ ├── linenoise-ng.json │ │ │ │ ├── lionkor-commandline.json │ │ │ │ ├── live555.json │ │ │ │ ├── llfio.json │ │ │ │ ├── llgl.json │ │ │ │ ├── llvm.json │ │ │ │ ├── lmdb.json │ │ │ │ ├── lodepng-c.json │ │ │ │ ├── lodepng.json │ │ │ │ ├── log4cplus.json │ │ │ │ ├── log4cpp.json │ │ │ │ ├── log4cxx.json │ │ │ │ ├── loguru.json │ │ │ │ ├── lpeg.json │ │ │ │ ├── lua.json │ │ │ │ ├── luabridge.json │ │ │ │ ├── luafilesystem.json │ │ │ │ ├── luajit.json │ │ │ │ ├── luasec.json │ │ │ │ ├── luasocket.json │ │ │ │ ├── lunasvg.json │ │ │ │ ├── lv2.json │ │ │ │ ├── lz4.json │ │ │ │ ├── lzfse.json │ │ │ │ ├── lzo.json │ │ │ │ └── lzokay.json │ │ │ │ ├── m- │ │ │ │ ├── magic-enum.json │ │ │ │ ├── magic-get.json │ │ │ │ ├── magnum-extras.json │ │ │ │ ├── magnum-integration.json │ │ │ │ ├── magnum-plugins.json │ │ │ │ ├── magnum.json │ │ │ │ ├── mailio.json │ │ │ │ ├── mapbox-geojson-cpp.json │ │ │ │ ├── mapbox-geojson-vt-cpp.json │ │ │ │ ├── mapbox-geometry.json │ │ │ │ ├── mapbox-polylabel.json │ │ │ │ ├── mapbox-variant.json │ │ │ │ ├── mapbox-wagyu.json │ │ │ │ ├── mapnik.json │ │ │ │ ├── marble.json │ │ │ │ ├── marl.json │ │ │ │ ├── mathc.json │ │ │ │ ├── mathgl.json │ │ │ │ ├── matio.json │ │ │ │ ├── matplotlib-cpp.json │ │ │ │ ├── matplotplusplus.json │ │ │ │ ├── matroska.json │ │ │ │ ├── mbedtls.json │ │ │ │ ├── mcpp.json │ │ │ │ ├── mdns.json │ │ │ │ ├── mdnsresponder.json │ │ │ │ ├── mdspan.json │ │ │ │ ├── mecab.json │ │ │ │ ├── memorymodule.json │ │ │ │ ├── mesa.json │ │ │ │ ├── meschach.json │ │ │ │ ├── meshoptimizer.json │ │ │ │ ├── metis.json │ │ │ │ ├── metrohash.json │ │ │ │ ├── mfl.json │ │ │ │ ├── mgnlibs.json │ │ │ │ ├── mhook.json │ │ │ │ ├── microsoft-signalr.json │ │ │ │ ├── mikktspace.json │ │ │ │ ├── milerius-sfml-imgui.json │ │ │ │ ├── mimalloc.json │ │ │ │ ├── minc.json │ │ │ │ ├── minhook.json │ │ │ │ ├── minifb.json │ │ │ │ ├── minimp3.json │ │ │ │ ├── minio-cpp.json │ │ │ │ ├── minisat-master-keying.json │ │ │ │ ├── minitrace.json │ │ │ │ ├── miniupnpc.json │ │ │ │ ├── miniz.json │ │ │ │ ├── minizip-ng.json │ │ │ │ ├── minizip.json │ │ │ │ ├── mio.json │ │ │ │ ├── mlpack.json │ │ │ │ ├── mman.json │ │ │ │ ├── mmloader.json │ │ │ │ ├── mmx.json │ │ │ │ ├── mnn.json │ │ │ │ ├── modp-base64.json │ │ │ │ ├── mongo-c-driver.json │ │ │ │ ├── mongo-cxx-driver.json │ │ │ │ ├── mongoose.json │ │ │ │ ├── monkeys-audio.json │ │ │ │ ├── moos-core.json │ │ │ │ ├── moos-essential.json │ │ │ │ ├── moos-ui.json │ │ │ │ ├── morton-nd.json │ │ │ │ ├── mosquitto.json │ │ │ │ ├── mozjpeg.json │ │ │ │ ├── mp-units.json │ │ │ │ ├── mp3lame.json │ │ │ │ ├── mpark-variant.json │ │ │ │ ├── mpc.json │ │ │ │ ├── mpfr.json │ │ │ │ ├── mpg123.json │ │ │ │ ├── mpi.json │ │ │ │ ├── mpir.json │ │ │ │ ├── mpmcqueue.json │ │ │ │ ├── mqtt-cpp.json │ │ │ │ ├── ms-angle.json │ │ │ │ ├── ms-gltf.json │ │ │ │ ├── ms-gsl.json │ │ │ │ ├── ms-quic.json │ │ │ │ ├── msdfgen.json │ │ │ │ ├── msgpack.json │ │ │ │ ├── msgpack11.json │ │ │ │ ├── msinttypes.json │ │ │ │ ├── msix.json │ │ │ │ ├── msmpi.json │ │ │ │ ├── mstch.json │ │ │ │ ├── mujs.json │ │ │ │ ├── munit.json │ │ │ │ ├── muparser.json │ │ │ │ ├── murmurhash.json │ │ │ │ ├── mvfst.json │ │ │ │ └── mygui.json │ │ │ │ ├── n- │ │ │ │ ├── nameof.json │ │ │ │ ├── nana.json │ │ │ │ ├── nano-signal-slot.json │ │ │ │ ├── nanobench.json │ │ │ │ ├── nanodbc.json │ │ │ │ ├── nanoflann.json │ │ │ │ ├── nanogui.json │ │ │ │ ├── nanomsg.json │ │ │ │ ├── nanopb.json │ │ │ │ ├── nanoprintf.json │ │ │ │ ├── nanorange.json │ │ │ │ ├── nanort.json │ │ │ │ ├── nanovg.json │ │ │ │ ├── nativefiledialog.json │ │ │ │ ├── nayuki-qr-code-generator.json │ │ │ │ ├── nccl.json │ │ │ │ ├── ncurses.json │ │ │ │ ├── neargye-semver.json │ │ │ │ ├── ned14-internal-quickcpplib.json │ │ │ │ ├── neon2sse.json │ │ │ │ ├── netcdf-c.json │ │ │ │ ├── netcdf-cxx4.json │ │ │ │ ├── nethost.json │ │ │ │ ├── nettle.json │ │ │ │ ├── networkdirect-sdk.json │ │ │ │ ├── nghttp2.json │ │ │ │ ├── ngspice.json │ │ │ │ ├── nifly.json │ │ │ │ ├── nifticlib.json │ │ │ │ ├── nlohmann-fifo-map.json │ │ │ │ ├── nlohmann-json.json │ │ │ │ ├── nlopt.json │ │ │ │ ├── nmap.json │ │ │ │ ├── nmslib.json │ │ │ │ ├── nng.json │ │ │ │ ├── nngpp.json │ │ │ │ ├── nnpack.json │ │ │ │ ├── nonius.json │ │ │ │ ├── nowide.json │ │ │ │ ├── nrf-ble-driver.json │ │ │ │ ├── nspr.json │ │ │ │ ├── nss.json │ │ │ │ ├── nsync.json │ │ │ │ ├── nt-wrapper.json │ │ │ │ ├── nu-book-zxing-cpp.json │ │ │ │ ├── nuklear.json │ │ │ │ ├── numactl.json │ │ │ │ ├── numcpp.json │ │ │ │ ├── nuspell.json │ │ │ │ └── nvtt.json │ │ │ │ ├── o- │ │ │ │ ├── oatpp-consul.json │ │ │ │ ├── oatpp-curl.json │ │ │ │ ├── oatpp-libressl.json │ │ │ │ ├── oatpp-mbedtls.json │ │ │ │ ├── oatpp-mongo.json │ │ │ │ ├── oatpp-openssl.json │ │ │ │ ├── oatpp-postgresql.json │ │ │ │ ├── oatpp-sqlite.json │ │ │ │ ├── oatpp-ssdp.json │ │ │ │ ├── oatpp-swagger.json │ │ │ │ ├── oatpp-websocket.json │ │ │ │ ├── oatpp-zlib.json │ │ │ │ ├── oatpp.json │ │ │ │ ├── observer-ptr-lite.json │ │ │ │ ├── ocilib.json │ │ │ │ ├── octomap.json │ │ │ │ ├── ode.json │ │ │ │ ├── offscale-libetcd-cpp.json │ │ │ │ ├── ogdf.json │ │ │ │ ├── ogre-next.json │ │ │ │ ├── ogre.json │ │ │ │ ├── ois.json │ │ │ │ ├── ompl.json │ │ │ │ ├── omplapp.json │ │ │ │ ├── onednn.json │ │ │ │ ├── oniguruma.json │ │ │ │ ├── onnx-optimizer.json │ │ │ │ ├── onnx.json │ │ │ │ ├── onnxruntime-gpu.json │ │ │ │ ├── oof.json │ │ │ │ ├── open62541.json │ │ │ │ ├── openal-soft.json │ │ │ │ ├── openblas.json │ │ │ │ ├── opencascade.json │ │ │ │ ├── opencc.json │ │ │ │ ├── opencensus-cpp.json │ │ │ │ ├── opencl.json │ │ │ │ ├── opencolorio-tools.json │ │ │ │ ├── opencolorio.json │ │ │ │ ├── opencsg.json │ │ │ │ ├── opencv.json │ │ │ │ ├── opencv2.json │ │ │ │ ├── opencv3.json │ │ │ │ ├── opencv4.json │ │ │ │ ├── opendnp3.json │ │ │ │ ├── openexr.json │ │ │ │ ├── opengl-registry.json │ │ │ │ ├── opengl.json │ │ │ │ ├── openh264.json │ │ │ │ ├── openigtlink.json │ │ │ │ ├── openimageio.json │ │ │ │ ├── openjpeg.json │ │ │ │ ├── openmama.json │ │ │ │ ├── openmesh.json │ │ │ │ ├── openmpi.json │ │ │ │ ├── openmvg.json │ │ │ │ ├── openmvs.json │ │ │ │ ├── openni2.json │ │ │ │ ├── openscap.json │ │ │ │ ├── openssl-unix.json │ │ │ │ ├── openssl-uwp.json │ │ │ │ ├── openssl-windows.json │ │ │ │ ├── openssl.json │ │ │ │ ├── opensubdiv.json │ │ │ │ ├── opentelemetry-cpp.json │ │ │ │ ├── opentracing.json │ │ │ │ ├── openvdb.json │ │ │ │ ├── openvpn3.json │ │ │ │ ├── openvr.json │ │ │ │ ├── openxr-loader.json │ │ │ │ ├── optimus-cpp.json │ │ │ │ ├── optional-bare.json │ │ │ │ ├── optional-lite.json │ │ │ │ ├── opus.json │ │ │ │ ├── opusfile.json │ │ │ │ ├── orc.json │ │ │ │ ├── orocos-kdl.json │ │ │ │ ├── osg-qt.json │ │ │ │ ├── osg.json │ │ │ │ ├── osgearth.json │ │ │ │ ├── osi.json │ │ │ │ ├── otl.json │ │ │ │ └── outcome.json │ │ │ │ ├── p- │ │ │ │ ├── p-ranav-csv.json │ │ │ │ ├── p-ranav-csv2.json │ │ │ │ ├── pagmo2.json │ │ │ │ ├── paho-mqtt.json │ │ │ │ ├── paho-mqttpp3.json │ │ │ │ ├── palsigslot.json │ │ │ │ ├── pango.json │ │ │ │ ├── pangolin.json │ │ │ │ ├── pangomm.json │ │ │ │ ├── parallel-hashmap.json │ │ │ │ ├── parallelstl.json │ │ │ │ ├── paraview.json │ │ │ │ ├── parmetis.json │ │ │ │ ├── parquet.json │ │ │ │ ├── parson.json │ │ │ │ ├── pbc.json │ │ │ │ ├── pcapplusplus.json │ │ │ │ ├── pcg.json │ │ │ │ ├── pcl.json │ │ │ │ ├── pcre.json │ │ │ │ ├── pcre2.json │ │ │ │ ├── pdal-c.json │ │ │ │ ├── pdal.json │ │ │ │ ├── pdcurses.json │ │ │ │ ├── pdqsort.json │ │ │ │ ├── pe-parse.json │ │ │ │ ├── pegtl-2.json │ │ │ │ ├── pegtl.json │ │ │ │ ├── pffft.json │ │ │ │ ├── pfring.json │ │ │ │ ├── pfultz2-linq.json │ │ │ │ ├── phnt.json │ │ │ │ ├── physfs.json │ │ │ │ ├── physx.json │ │ │ │ ├── picojson.json │ │ │ │ ├── picosha2.json │ │ │ │ ├── piex.json │ │ │ │ ├── pistache.json │ │ │ │ ├── pixel.json │ │ │ │ ├── pixman.json │ │ │ │ ├── pkgconf.json │ │ │ │ ├── platform-folders.json │ │ │ │ ├── plf-colony.json │ │ │ │ ├── plf-hive.json │ │ │ │ ├── plf-list.json │ │ │ │ ├── plf-nanotimer.json │ │ │ │ ├── plf-stack.json │ │ │ │ ├── plib.json │ │ │ │ ├── plibsys.json │ │ │ │ ├── plog.json │ │ │ │ ├── plplot.json │ │ │ │ ├── plustache.json │ │ │ │ ├── pmdk.json │ │ │ │ ├── pngpp.json │ │ │ │ ├── pngwriter.json │ │ │ │ ├── poco.json │ │ │ │ ├── podofo.json │ │ │ │ ├── poissonrecon.json │ │ │ │ ├── poly2tri.json │ │ │ │ ├── polyclipping.json │ │ │ │ ├── polyhook2.json │ │ │ │ ├── polymorphic-value.json │ │ │ │ ├── ponder.json │ │ │ │ ├── poppler.json │ │ │ │ ├── popsift.json │ │ │ │ ├── portable-snippets.json │ │ │ │ ├── portaudio.json │ │ │ │ ├── portmidi.json │ │ │ │ ├── portsmf.json │ │ │ │ ├── ppconsul.json │ │ │ │ ├── ppmagic.json │ │ │ │ ├── pprint.json │ │ │ │ ├── pqp.json │ │ │ │ ├── presentmon.json │ │ │ │ ├── proj.json │ │ │ │ ├── proj4.json │ │ │ │ ├── prometheus-cpp.json │ │ │ │ ├── promise-cpp.json │ │ │ │ ├── protobuf-c.json │ │ │ │ ├── protobuf.json │ │ │ │ ├── protopuf.json │ │ │ │ ├── protozero.json │ │ │ │ ├── proxygen.json │ │ │ │ ├── proxywrapper.json │ │ │ │ ├── psimd.json │ │ │ │ ├── ptex.json │ │ │ │ ├── pthread.json │ │ │ │ ├── pthreadpool.json │ │ │ │ ├── pthreads.json │ │ │ │ ├── ptyqt.json │ │ │ │ ├── pugixml.json │ │ │ │ ├── pybind11.json │ │ │ │ ├── pystring.json │ │ │ │ ├── python2.json │ │ │ │ └── python3.json │ │ │ │ ├── q- │ │ │ │ ├── qca.json │ │ │ │ ├── qcustomplot.json │ │ │ │ ├── qhttpengine.json │ │ │ │ ├── qhull.json │ │ │ │ ├── qnnpack.json │ │ │ │ ├── qpid-proton.json │ │ │ │ ├── qscintilla.json │ │ │ │ ├── qt-advanced-docking-system.json │ │ │ │ ├── qt.json │ │ │ │ ├── qt5-3d.json │ │ │ │ ├── qt5-activeqt.json │ │ │ │ ├── qt5-androidextras.json │ │ │ │ ├── qt5-base.json │ │ │ │ ├── qt5-canvas3d.json │ │ │ │ ├── qt5-charts.json │ │ │ │ ├── qt5-connectivity.json │ │ │ │ ├── qt5-datavis3d.json │ │ │ │ ├── qt5-declarative.json │ │ │ │ ├── qt5-doc.json │ │ │ │ ├── qt5-gamepad.json │ │ │ │ ├── qt5-graphicaleffects.json │ │ │ │ ├── qt5-imageformats.json │ │ │ │ ├── qt5-location.json │ │ │ │ ├── qt5-macextras.json │ │ │ │ ├── qt5-modularscripts.json │ │ │ │ ├── qt5-mqtt.json │ │ │ │ ├── qt5-multimedia.json │ │ │ │ ├── qt5-networkauth.json │ │ │ │ ├── qt5-purchasing.json │ │ │ │ ├── qt5-quickcontrols.json │ │ │ │ ├── qt5-quickcontrols2.json │ │ │ │ ├── qt5-remoteobjects.json │ │ │ │ ├── qt5-script.json │ │ │ │ ├── qt5-scxml.json │ │ │ │ ├── qt5-sensors.json │ │ │ │ ├── qt5-serialbus.json │ │ │ │ ├── qt5-serialport.json │ │ │ │ ├── qt5-speech.json │ │ │ │ ├── qt5-svg.json │ │ │ │ ├── qt5-tools.json │ │ │ │ ├── qt5-translations.json │ │ │ │ ├── qt5-virtualkeyboard.json │ │ │ │ ├── qt5-wayland.json │ │ │ │ ├── qt5-webchannel.json │ │ │ │ ├── qt5-webengine.json │ │ │ │ ├── qt5-webglplugin.json │ │ │ │ ├── qt5-websockets.json │ │ │ │ ├── qt5-webview.json │ │ │ │ ├── qt5-winextras.json │ │ │ │ ├── qt5-x11extras.json │ │ │ │ ├── qt5-xmlpatterns.json │ │ │ │ ├── qt5.json │ │ │ │ ├── qt5compat.json │ │ │ │ ├── qt6betablock.json │ │ │ │ ├── qtactiveqt.json │ │ │ │ ├── qtapplicationmanager.json │ │ │ │ ├── qtbase.json │ │ │ │ ├── qtcharts.json │ │ │ │ ├── qtcoap.json │ │ │ │ ├── qtconnectivity.json │ │ │ │ ├── qtdatavis3d.json │ │ │ │ ├── qtdeclarative.json │ │ │ │ ├── qtdeviceutilities.json │ │ │ │ ├── qtdoc.json │ │ │ │ ├── qtimageformats.json │ │ │ │ ├── qtinterfaceframework.json │ │ │ │ ├── qtkeychain-qt6.json │ │ │ │ ├── qtkeychain.json │ │ │ │ ├── qtlocation.json │ │ │ │ ├── qtlottie.json │ │ │ │ ├── qtmqtt.json │ │ │ │ ├── qtmultimedia.json │ │ │ │ ├── qtnetworkauth.json │ │ │ │ ├── qtopcua.json │ │ │ │ ├── qtpositioning.json │ │ │ │ ├── qtquick3d.json │ │ │ │ ├── qtquickcontrols2.json │ │ │ │ ├── qtquicktimeline.json │ │ │ │ ├── qtremoteobjects.json │ │ │ │ ├── qtscxml.json │ │ │ │ ├── qtsensors.json │ │ │ │ ├── qtserialbus.json │ │ │ │ ├── qtserialport.json │ │ │ │ ├── qtshadertools.json │ │ │ │ ├── qtsvg.json │ │ │ │ ├── qttools.json │ │ │ │ ├── qttranslations.json │ │ │ │ ├── qtvirtualkeyboard.json │ │ │ │ ├── qtwayland.json │ │ │ │ ├── qtwebchannel.json │ │ │ │ ├── qtwebengine.json │ │ │ │ ├── qtwebsockets.json │ │ │ │ ├── qtwebview.json │ │ │ │ ├── quadtree.json │ │ │ │ ├── quantlib.json │ │ │ │ ├── quaternions.json │ │ │ │ ├── quazip.json │ │ │ │ ├── quickfast.json │ │ │ │ ├── quickfix.json │ │ │ │ ├── quill.json │ │ │ │ ├── quirc.json │ │ │ │ ├── qwt-qt6.json │ │ │ │ ├── qwt.json │ │ │ │ └── qwtw.json │ │ │ │ ├── r- │ │ │ │ ├── rabit.json │ │ │ │ ├── ragel.json │ │ │ │ ├── randomstr.json │ │ │ │ ├── rang.json │ │ │ │ ├── range-v3-vs2015.json │ │ │ │ ├── range-v3.json │ │ │ │ ├── rapidcheck.json │ │ │ │ ├── rapidcsv.json │ │ │ │ ├── rapidjson.json │ │ │ │ ├── rapidxml-ns.json │ │ │ │ ├── rapidxml.json │ │ │ │ ├── rappture.json │ │ │ │ ├── raylib.json │ │ │ │ ├── rbdl-orb.json │ │ │ │ ├── rbdl.json │ │ │ │ ├── re2.json │ │ │ │ ├── readerwriterqueue.json │ │ │ │ ├── readline-osx.json │ │ │ │ ├── readline-unix.json │ │ │ │ ├── readline-win32.json │ │ │ │ ├── readline.json │ │ │ │ ├── readosm.json │ │ │ │ ├── realsense2.json │ │ │ │ ├── recast.json │ │ │ │ ├── redis-plus-plus.json │ │ │ │ ├── refl-cpp.json │ │ │ │ ├── refprop-headers.json │ │ │ │ ├── rendergraph.json │ │ │ │ ├── replxx.json │ │ │ │ ├── reproc.json │ │ │ │ ├── rest-rpc.json │ │ │ │ ├── restbed.json │ │ │ │ ├── restc-cpp.json │ │ │ │ ├── restclient-cpp.json │ │ │ │ ├── restinio.json │ │ │ │ ├── rexo.json │ │ │ │ ├── rhash.json │ │ │ │ ├── rhasheq.json │ │ │ │ ├── riffcpp.json │ │ │ │ ├── ring-span-lite.json │ │ │ │ ├── rmlui.json │ │ │ │ ├── roaring.json │ │ │ │ ├── robin-hood-hashing.json │ │ │ │ ├── robin-map.json │ │ │ │ ├── rocksdb.json │ │ │ │ ├── rpclib.json │ │ │ │ ├── rply.json │ │ │ │ ├── rs-core-lib.json │ │ │ │ ├── rsasynccpp.json │ │ │ │ ├── rsm-binary-io.json │ │ │ │ ├── rsm-bsa.json │ │ │ │ ├── rsm-mmio.json │ │ │ │ ├── rsocket.json │ │ │ │ ├── rtabmap.json │ │ │ │ ├── rtaudio.json │ │ │ │ ├── rtlsdr.json │ │ │ │ ├── rtmidi.json │ │ │ │ ├── rttr.json │ │ │ │ ├── rxcpp.json │ │ │ │ ├── rxqt.json │ │ │ │ ├── rxspencer.json │ │ │ │ ├── ryml.json │ │ │ │ └── ryu.json │ │ │ │ ├── s- │ │ │ │ ├── s2geometry.json │ │ │ │ ├── s2n.json │ │ │ │ ├── safeint.json │ │ │ │ ├── sail.json │ │ │ │ ├── sais.json │ │ │ │ ├── sajson.json │ │ │ │ ├── sassc.json │ │ │ │ ├── sbp.json │ │ │ │ ├── scintilla.json │ │ │ │ ├── sciplot.json │ │ │ │ ├── sciter-js.json │ │ │ │ ├── sciter.json │ │ │ │ ├── scnlib.json │ │ │ │ ├── scottt-debugbreak.json │ │ │ │ ├── scylla-wrapper.json │ │ │ │ ├── sdformat10.json │ │ │ │ ├── sdformat6.json │ │ │ │ ├── sdformat9.json │ │ │ │ ├── sdl1-net.json │ │ │ │ ├── sdl1.json │ │ │ │ ├── sdl2-gfx.json │ │ │ │ ├── sdl2-image.json │ │ │ │ ├── sdl2-mixer.json │ │ │ │ ├── sdl2-net.json │ │ │ │ ├── sdl2-ttf.json │ │ │ │ ├── sdl2.json │ │ │ │ ├── sdl2pp.json │ │ │ │ ├── seal.json │ │ │ │ ├── secp256k1.json │ │ │ │ ├── selene.json │ │ │ │ ├── sentencepiece.json │ │ │ │ ├── sentry-native.json │ │ │ │ ├── septag-sx.json │ │ │ │ ├── seqan.json │ │ │ │ ├── serd.json │ │ │ │ ├── serdepp.json │ │ │ │ ├── sf2cute.json │ │ │ │ ├── sfgui.json │ │ │ │ ├── sfml.json │ │ │ │ ├── sfsexp.json │ │ │ │ ├── shaderc.json │ │ │ │ ├── shaderwriter.json │ │ │ │ ├── shapelib.json │ │ │ │ ├── shiva-sfml.json │ │ │ │ ├── shiva.json │ │ │ │ ├── shogun.json │ │ │ │ ├── signalrclient.json │ │ │ │ ├── sigslot.json │ │ │ │ ├── simage.json │ │ │ │ ├── simbody.json │ │ │ │ ├── simde.json │ │ │ │ ├── simdjson.json │ │ │ │ ├── simdutf.json │ │ │ │ ├── simple-fft.json │ │ │ │ ├── simpleini.json │ │ │ │ ├── sjpeg.json │ │ │ │ ├── skcrypter.json │ │ │ │ ├── skia.json │ │ │ │ ├── skyr-url.json │ │ │ │ ├── sleef.json │ │ │ │ ├── sleepy-discord.json │ │ │ │ ├── slikenet.json │ │ │ │ ├── sltbench.json │ │ │ │ ├── smpeg2.json │ │ │ │ ├── snappy.json │ │ │ │ ├── sndfile.json │ │ │ │ ├── snowhouse.json │ │ │ │ ├── so5extra.json │ │ │ │ ├── sobjectizer.json │ │ │ │ ├── soci.json │ │ │ │ ├── socket-io-client.json │ │ │ │ ├── sockpp.json │ │ │ │ ├── soem.json │ │ │ │ ├── soil.json │ │ │ │ ├── soil2.json │ │ │ │ ├── sokol.json │ │ │ │ ├── sol2.json │ │ │ │ ├── solid3.json │ │ │ │ ├── sophus.json │ │ │ │ ├── soqt.json │ │ │ │ ├── sord.json │ │ │ │ ├── soundtouch.json │ │ │ │ ├── soxr.json │ │ │ │ ├── spaceland.json │ │ │ │ ├── span-lite.json │ │ │ │ ├── sparsehash.json │ │ │ │ ├── sparsepp.json │ │ │ │ ├── spatialite-tools.json │ │ │ │ ├── spdk-dpdk.json │ │ │ │ ├── spdk-ipsec.json │ │ │ │ ├── spdk-isal.json │ │ │ │ ├── spdk.json │ │ │ │ ├── spdlog.json │ │ │ │ ├── spectra.json │ │ │ │ ├── speex.json │ │ │ │ ├── speexdsp.json │ │ │ │ ├── spirit-po.json │ │ │ │ ├── spirv-cross.json │ │ │ │ ├── spirv-headers.json │ │ │ │ ├── spirv-reflect.json │ │ │ │ ├── spirv-tools.json │ │ │ │ ├── spix.json │ │ │ │ ├── sprout.json │ │ │ │ ├── spscqueue.json │ │ │ │ ├── sqlcipher.json │ │ │ │ ├── sqlite-modern-cpp.json │ │ │ │ ├── sqlite-orm.json │ │ │ │ ├── sqlite3.json │ │ │ │ ├── sqlitecpp.json │ │ │ │ ├── sqlpp11-connector-mysql.json │ │ │ │ ├── sqlpp11-connector-sqlite3.json │ │ │ │ ├── sqlpp11.json │ │ │ │ ├── squirrel.json │ │ │ │ ├── sratom.json │ │ │ │ ├── srell.json │ │ │ │ ├── srpc.json │ │ │ │ ├── starlink-ast.json │ │ │ │ ├── status-code.json │ │ │ │ ├── status-value-lite.json │ │ │ │ ├── stb.json │ │ │ │ ├── stlab.json │ │ │ │ ├── stormlib.json │ │ │ │ ├── strict-variant.json │ │ │ │ ├── string-theory.json │ │ │ │ ├── string-view-lite.json │ │ │ │ ├── strtk.json │ │ │ │ ├── stx.json │ │ │ │ ├── stxxl.json │ │ │ │ ├── suitesparse.json │ │ │ │ ├── sundials.json │ │ │ │ ├── superlu.json │ │ │ │ ├── symengine.json │ │ │ │ ├── systemc.json │ │ │ │ └── szip.json │ │ │ │ ├── t- │ │ │ │ ├── tabulate.json │ │ │ │ ├── tacopie.json │ │ │ │ ├── taglib.json │ │ │ │ ├── taocpp-json.json │ │ │ │ ├── tap-windows6.json │ │ │ │ ├── taskflow.json │ │ │ │ ├── tbb.json │ │ │ │ ├── tcb-span.json │ │ │ │ ├── tcl.json │ │ │ │ ├── tclap.json │ │ │ │ ├── teemo.json │ │ │ │ ├── telnetpp.json │ │ │ │ ├── tensorflow-cc.json │ │ │ │ ├── tensorflow-common.json │ │ │ │ ├── tensorflow.json │ │ │ │ ├── tensorpipe.json │ │ │ │ ├── termcolor.json │ │ │ │ ├── tesseract.json │ │ │ │ ├── tfhe.json │ │ │ │ ├── tgbot-cpp.json │ │ │ │ ├── tgc.json │ │ │ │ ├── tgui.json │ │ │ │ ├── theia.json │ │ │ │ ├── think-cell-range.json │ │ │ │ ├── thor.json │ │ │ │ ├── threadpool.json │ │ │ │ ├── thrift.json │ │ │ │ ├── tidy-html5.json │ │ │ │ ├── tiff.json │ │ │ │ ├── tinkerforge.json │ │ │ │ ├── tiny-aes-c.json │ │ │ │ ├── tiny-bignum-c.json │ │ │ │ ├── tiny-dnn.json │ │ │ │ ├── tiny-process-library.json │ │ │ │ ├── tiny-regex-c.json │ │ │ │ ├── tinycbor.json │ │ │ │ ├── tinycthread.json │ │ │ │ ├── tinydir.json │ │ │ │ ├── tinyexif.json │ │ │ │ ├── tinyexpr.json │ │ │ │ ├── tinyexr.json │ │ │ │ ├── tinyfiledialogs.json │ │ │ │ ├── tinygltf.json │ │ │ │ ├── tinynpy.json │ │ │ │ ├── tinyobjloader.json │ │ │ │ ├── tinyply.json │ │ │ │ ├── tinyspline.json │ │ │ │ ├── tinythread.json │ │ │ │ ├── tinytoml.json │ │ │ │ ├── tinyutf8.json │ │ │ │ ├── tinyxml.json │ │ │ │ ├── tinyxml2.json │ │ │ │ ├── tl-expected.json │ │ │ │ ├── tl-function-ref.json │ │ │ │ ├── tl-generator.json │ │ │ │ ├── tl-optional.json │ │ │ │ ├── tl-ranges.json │ │ │ │ ├── tlx.json │ │ │ │ ├── tmx.json │ │ │ │ ├── tmxlite.json │ │ │ │ ├── tmxparser.json │ │ │ │ ├── toml11.json │ │ │ │ ├── tomlplusplus.json │ │ │ │ ├── tool-meson.json │ │ │ │ ├── torch-th.json │ │ │ │ ├── tracy.json │ │ │ │ ├── transwarp.json │ │ │ │ ├── trantor.json │ │ │ │ ├── tre.json │ │ │ │ ├── treehh.json │ │ │ │ ├── treehopper.json │ │ │ │ ├── triangle.json │ │ │ │ ├── triton.json │ │ │ │ ├── trompeloeil.json │ │ │ │ ├── tsl-hopscotch-map.json │ │ │ │ ├── tsl-ordered-map.json │ │ │ │ ├── tsl-sparse-map.json │ │ │ │ ├── ttauri.json │ │ │ │ ├── turbobase64.json │ │ │ │ ├── tvision.json │ │ │ │ ├── tweeny.json │ │ │ │ ├── type-lite.json │ │ │ │ └── type-safe.json │ │ │ │ ├── u- │ │ │ │ ├── uchardet.json │ │ │ │ ├── umock-c.json │ │ │ │ ├── unicorn-lib.json │ │ │ │ ├── unicorn.json │ │ │ │ ├── units.json │ │ │ │ ├── unittest-cpp.json │ │ │ │ ├── unixodbc.json │ │ │ │ ├── unqlite.json │ │ │ │ ├── unrar.json │ │ │ │ ├── upb.json │ │ │ │ ├── urdfdom-headers.json │ │ │ │ ├── urdfdom.json │ │ │ │ ├── urho3d.json │ │ │ │ ├── uriparser.json │ │ │ │ ├── usbmuxd.json │ │ │ │ ├── usd.json │ │ │ │ ├── usockets.json │ │ │ │ ├── usrsctp.json │ │ │ │ ├── utf8h.json │ │ │ │ ├── utf8proc.json │ │ │ │ ├── utfcpp.json │ │ │ │ ├── utfz.json │ │ │ │ ├── uthash.json │ │ │ │ ├── uthenticode.json │ │ │ │ ├── uvatlas.json │ │ │ │ ├── uvw.json │ │ │ │ └── uwebsockets.json │ │ │ │ ├── v- │ │ │ │ ├── v-hacd.json │ │ │ │ ├── v8.json │ │ │ │ ├── valijson.json │ │ │ │ ├── value-ptr-lite.json │ │ │ │ ├── vamp-sdk.json │ │ │ │ ├── variant-lite.json │ │ │ │ ├── vc.json │ │ │ │ ├── vcglib.json │ │ │ │ ├── vcpkg-cmake-config.json │ │ │ │ ├── vcpkg-cmake.json │ │ │ │ ├── vcpkg-get-python-packages.json │ │ │ │ ├── vcpkg-gfortran.json │ │ │ │ ├── vcpkg-gn.json │ │ │ │ ├── vcpkg-pkgconfig-get-modules.json │ │ │ │ ├── vcpkg-qmake.json │ │ │ │ ├── vcpkg-tool-gyp-nss.json │ │ │ │ ├── vcpkg-tool-lessmsi.json │ │ │ │ ├── vcpkg-tool-meson.json │ │ │ │ ├── vcpkg-tool-mozbuild.json │ │ │ │ ├── vcpkg-tool-nodejs.json │ │ │ │ ├── vcpkg-tool-python2.json │ │ │ │ ├── vectorclass.json │ │ │ │ ├── visit-struct.json │ │ │ │ ├── vk-bootstrap.json │ │ │ │ ├── vlfeat.json │ │ │ │ ├── vlpp.json │ │ │ │ ├── volk.json │ │ │ │ ├── vs-yasm.json │ │ │ │ ├── vtk-dicom.json │ │ │ │ ├── vtk-m.json │ │ │ │ ├── vtk.json │ │ │ │ ├── vulkan-headers.json │ │ │ │ ├── vulkan-hpp.json │ │ │ │ ├── vulkan-memory-allocator.json │ │ │ │ ├── vulkan.json │ │ │ │ └── vxl.json │ │ │ │ ├── w- │ │ │ │ ├── wampcc.json │ │ │ │ ├── wangle.json │ │ │ │ ├── wavelib.json │ │ │ │ ├── wavpack.json │ │ │ │ ├── websocketpp.json │ │ │ │ ├── wepoll.json │ │ │ │ ├── wg21-sg14.json │ │ │ │ ├── wil.json │ │ │ │ ├── wildmidi.json │ │ │ │ ├── wincrypt.json │ │ │ │ ├── winlamb.json │ │ │ │ ├── winpcap.json │ │ │ │ ├── winpty.json │ │ │ │ ├── winreg.json │ │ │ │ ├── winsock2.json │ │ │ │ ├── winsparkle.json │ │ │ │ ├── wintoast.json │ │ │ │ ├── woff2.json │ │ │ │ ├── wordnet.json │ │ │ │ ├── workflow.json │ │ │ │ ├── wpilib.json │ │ │ │ ├── wren.json │ │ │ │ ├── wt.json │ │ │ │ ├── wtl.json │ │ │ │ ├── wxchartdir.json │ │ │ │ └── wxwidgets.json │ │ │ │ ├── x- │ │ │ │ ├── x-plane.json │ │ │ │ ├── x264.json │ │ │ │ ├── x265.json │ │ │ │ ├── xalan-c.json │ │ │ │ ├── xaudio2redist.json │ │ │ │ ├── xbyak.json │ │ │ │ ├── xerces-c.json │ │ │ │ ├── xeus.json │ │ │ │ ├── xframe.json │ │ │ │ ├── xlnt.json │ │ │ │ ├── xlsxio.json │ │ │ │ ├── xmlsec.json │ │ │ │ ├── xmsh.json │ │ │ │ ├── xnnpack.json │ │ │ │ ├── xorstr.json │ │ │ │ ├── xproperty.json │ │ │ │ ├── xqilla.json │ │ │ │ ├── xsimd.json │ │ │ │ ├── xtensor-blas.json │ │ │ │ ├── xtensor-fftw.json │ │ │ │ ├── xtensor-io.json │ │ │ │ ├── xtensor.json │ │ │ │ ├── xtl.json │ │ │ │ └── xxhash.json │ │ │ │ ├── y- │ │ │ │ ├── yajl.json │ │ │ │ ├── yaml-cpp.json │ │ │ │ ├── yara.json │ │ │ │ ├── yas.json │ │ │ │ ├── yasm-tool-helper.json │ │ │ │ ├── yasm-tool.json │ │ │ │ ├── yasm.json │ │ │ │ ├── yato.json │ │ │ │ ├── yoga.json │ │ │ │ ├── yomm2.json │ │ │ │ └── yyjson.json │ │ │ │ └── z- │ │ │ │ ├── z3.json │ │ │ │ ├── z85.json │ │ │ │ ├── zeromq.json │ │ │ │ ├── zfp.json │ │ │ │ ├── zkpp.json │ │ │ │ ├── zlib-ng.json │ │ │ │ ├── zlib.json │ │ │ │ ├── zookeeper.json │ │ │ │ ├── zopfli.json │ │ │ │ ├── zpp-bits.json │ │ │ │ ├── zserge-webview.json │ │ │ │ ├── zstd.json │ │ │ │ ├── zstr.json │ │ │ │ ├── ztd-text.json │ │ │ │ ├── zug.json │ │ │ │ ├── zxing-cpp.json │ │ │ │ ├── zydis.json │ │ │ │ ├── zyre.json │ │ │ │ └── zziplib.json │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── ModelViewer │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── rendertree.h │ │ │ ├── shader.h │ │ │ └── util.h │ │ │ ├── Plotter │ │ │ ├── CMakeLists.txt │ │ │ ├── application-x-pangoplot.xml │ │ │ └── main.cpp │ │ │ ├── VideoConvert │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ │ ├── VideoJson │ │ │ ├── CMakeLists.txt │ │ │ ├── main-print.cpp │ │ │ └── main-transform.cpp │ │ │ └── VideoViewer │ │ │ ├── CMakeLists.txt │ │ │ ├── application-x-pango.svg │ │ │ ├── application-x-pango.xml │ │ │ └── main.cpp │ ├── README.md │ ├── calib │ │ ├── barn.txt │ │ ├── eth.txt │ │ ├── euroc.txt │ │ ├── iphone.txt │ │ ├── kitti.txt │ │ ├── monovo.txt │ │ ├── tartan.txt │ │ ├── tum3.txt │ │ └── viper.txt │ ├── config │ │ ├── default.yaml │ │ └── fast.yaml │ ├── datasets │ │ └── euroc_groundtruth │ │ │ ├── MH_01_easy.txt │ │ │ ├── MH_02_easy.txt │ │ │ ├── MH_03_medium.txt │ │ │ ├── MH_04_difficult.txt │ │ │ ├── MH_05_difficult.txt │ │ │ ├── V1_01_easy.txt │ │ │ ├── V1_02_medium.txt │ │ │ ├── V1_03_difficult.txt │ │ │ ├── V2_01_easy.txt │ │ │ ├── V2_02_medium.txt │ │ │ └── V2_03_difficult.txt │ ├── demo.py │ ├── download_models_and_data.sh │ ├── dpvo │ │ ├── __init__.py │ │ ├── altcorr │ │ │ ├── __init__.py │ │ │ ├── correlation.cpp │ │ │ ├── correlation.py │ │ │ └── correlation_kernel.cu │ │ ├── ba.py │ │ ├── blocks.py │ │ ├── config.py │ │ ├── data_readers │ │ │ ├── __init__.py │ │ │ ├── augmentation.py │ │ │ ├── base.py │ │ │ ├── factory.py │ │ │ ├── frame_utils.py │ │ │ ├── rgbd_utils.py │ │ │ ├── tartan.py │ │ │ └── tartan_test.txt │ │ ├── dpvo.py │ │ ├── extractor.py │ │ ├── fastba │ │ │ ├── __init__.py │ │ │ ├── ba.cpp │ │ │ ├── ba.py │ │ │ ├── ba_cuda.cu │ │ │ ├── block_e.cu │ │ │ └── block_e.cuh │ │ ├── lietorch │ │ │ ├── __init__.py │ │ │ ├── broadcasting.py │ │ │ ├── gradcheck.py │ │ │ ├── group_ops.py │ │ │ ├── groups.py │ │ │ ├── include │ │ │ │ ├── common.h │ │ │ │ ├── dispatch.h │ │ │ │ ├── lietorch_cpu.h │ │ │ │ ├── lietorch_gpu.h │ │ │ │ ├── rxso3.h │ │ │ │ ├── se3.h │ │ │ │ ├── sim3.h │ │ │ │ └── so3.h │ │ │ ├── run_tests.py │ │ │ └── src │ │ │ │ ├── lietorch.cpp │ │ │ │ ├── lietorch_cpu.cpp │ │ │ │ └── lietorch_gpu.cu │ │ ├── logger.py │ │ ├── loop_closure │ │ │ ├── long_term.py │ │ │ ├── optim_utils.py │ │ │ └── retrieval │ │ │ │ ├── __init__.py │ │ │ │ ├── image_cache.py │ │ │ │ └── retrieval_dbow.py │ │ ├── net.py │ │ ├── patchgraph.py │ │ ├── plot_utils.py │ │ ├── projective_ops.py │ │ ├── stream.py │ │ └── utils.py │ ├── environment.yml │ ├── evaluate_euroc.py │ ├── evaluate_icl_nuim.py │ ├── evaluate_kitti.py │ ├── evaluate_tartan.py │ ├── evaluate_tum.py │ ├── logs │ │ ├── dpv_slam │ │ │ ├── euroc.txt │ │ │ ├── tartan.txt │ │ │ └── tum_rgbd.txt │ │ ├── euroc.txt │ │ ├── euroc_fast.txt │ │ ├── icl_nuim.txt │ │ ├── tartan.txt │ │ └── tum_rgbd.txt │ ├── setup.py │ └── train.py ├── cotracker │ ├── __init__.py │ ├── datasets │ │ ├── __init__.py │ │ ├── dataclass_utils.py │ │ ├── dr_dataset.py │ │ ├── kubric_movif_dataset.py │ │ ├── real_dataset.py │ │ ├── tap_vid_datasets.py │ │ └── utils.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── configs │ │ │ ├── eval_dynamic_replica.yaml │ │ │ ├── eval_tapvid_davis_first.yaml │ │ │ ├── eval_tapvid_davis_strided.yaml │ │ │ ├── eval_tapvid_kinetics_first.yaml │ │ │ ├── eval_tapvid_robotap_first.yaml │ │ │ ├── eval_tapvid_stacking_first.yaml │ │ │ └── eval_tapvid_stacking_strided.yaml │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── eval_utils.py │ │ │ └── evaluator.py │ │ └── evaluate.py │ ├── models │ │ ├── __init__.py │ │ ├── bootstap_predictor.py │ │ ├── build_cotracker.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── cotracker │ │ │ │ ├── __init__.py │ │ │ │ ├── blocks.py │ │ │ │ ├── cotracker.py │ │ │ │ ├── cotracker3_offline.py │ │ │ │ ├── cotracker3_online.py │ │ │ │ └── losses.py │ │ │ ├── embeddings.py │ │ │ └── model_utils.py │ │ └── evaluation_predictor.py │ ├── predictor.py │ ├── utils │ │ ├── __init__.py │ │ ├── train_utils.py │ │ └── visualizer.py │ └── version.py ├── genpose │ ├── configs │ │ └── config.py │ ├── datasets │ │ ├── datasets_genpose.py │ │ ├── datasets_genpose_RT.py │ │ ├── datasets_genpose_RT_sequence.py │ │ └── datasets_genpose_RT_sequence_flexible.py │ ├── networks │ │ ├── decoder_head │ │ │ ├── rot_head.py │ │ │ └── trans_head.py │ │ ├── gf_algorithms │ │ │ ├── energynet.py │ │ │ ├── losses.py │ │ │ ├── losses_RT.py │ │ │ ├── losses_RT_sequence.py │ │ │ ├── losses_RT_sequence_flexible.py │ │ │ ├── samplers.py │ │ │ ├── samplers_RT_sequence.py │ │ │ ├── samplers_RT_sequence_flexible.py │ │ │ ├── score_utils.py │ │ │ ├── scorenet.py │ │ │ ├── scorenet_RT.py │ │ │ ├── scorenet_RT_sequence.py │ │ │ ├── scorenet_RT_sequence_flexible.py │ │ │ └── sde.py │ │ ├── posenet.py │ │ ├── posenet_RT.py │ │ ├── posenet_RT_sequence.py │ │ ├── posenet_RT_sequence_flexible.py │ │ ├── posenet_agent.py │ │ ├── posenet_agent_RT.py │ │ ├── posenet_agent_RT_sequence.py │ │ ├── posenet_agent_RT_sequence_flexible.py │ │ ├── pts_encoder │ │ │ ├── pointnet2.py │ │ │ ├── pointnet2_utils │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── pointnet2 │ │ │ │ │ ├── pointnet2_modules.py │ │ │ │ │ ├── pointnet2_utils.py │ │ │ │ │ ├── pytorch_utils.py │ │ │ │ │ ├── setup.py │ │ │ │ │ └── src │ │ │ │ │ │ ├── ball_query.cpp │ │ │ │ │ │ ├── ball_query_gpu.cu │ │ │ │ │ │ ├── ball_query_gpu.h │ │ │ │ │ │ ├── cuda_utils.h │ │ │ │ │ │ ├── group_points.cpp │ │ │ │ │ │ ├── group_points_gpu.cu │ │ │ │ │ │ ├── group_points_gpu.h │ │ │ │ │ │ ├── interpolate.cpp │ │ │ │ │ │ ├── interpolate_gpu.cu │ │ │ │ │ │ ├── interpolate_gpu.h │ │ │ │ │ │ ├── pointnet2_api.cpp │ │ │ │ │ │ ├── sampling.cpp │ │ │ │ │ │ ├── sampling_gpu.cu │ │ │ │ │ │ └── sampling_gpu.h │ │ │ │ └── tools │ │ │ │ │ ├── _init_path.py │ │ │ │ │ ├── dataset.py │ │ │ │ │ ├── kitti_utils.py │ │ │ │ │ ├── pointnet2_msg.py │ │ │ │ │ └── train_and_eval.py │ │ │ └── pointnets.py │ │ └── reward.py │ └── utils │ │ ├── data_augmentation.py │ │ ├── datasets_utils.py │ │ ├── genpose_utils.py │ │ ├── metrics.py │ │ ├── misc.py │ │ ├── sgpa_utils.py │ │ ├── so3_visualize.py │ │ ├── tracking_utils.py │ │ └── visualize.py ├── hmr4d │ ├── __init__.py │ ├── build_gvhmr.py │ ├── configs │ │ ├── __init__.py │ │ ├── demo.yaml │ │ ├── exp │ │ │ └── gvhmr │ │ │ │ └── mixed │ │ │ │ └── mixed.yaml │ │ ├── global │ │ │ ├── debug │ │ │ │ ├── debug_train.yaml │ │ │ │ └── debug_train_limit_data.yaml │ │ │ └── task │ │ │ │ └── gvhmr │ │ │ │ ├── test_3dpw.yaml │ │ │ │ ├── test_3dpw_emdb_rich.yaml │ │ │ │ ├── test_emdb.yaml │ │ │ │ └── test_rich.yaml │ │ ├── hydra │ │ │ └── default.yaml │ │ ├── siga24_release.yaml │ │ ├── store_gvhmr.py │ │ └── train.yaml │ ├── datamodule │ │ └── mocap_trainX_testY.py │ ├── dataset │ │ ├── bedlam │ │ │ ├── bedlam.py │ │ │ └── utils.py │ │ ├── emdb │ │ │ ├── emdb_motion_test.py │ │ │ └── utils.py │ │ ├── h36m │ │ │ ├── camera-parameters.json │ │ │ ├── h36m.py │ │ │ └── utils.py │ │ ├── imgfeat_motion │ │ │ └── base_dataset.py │ │ ├── pure_motion │ │ │ ├── amass.py │ │ │ ├── base_dataset.py │ │ │ ├── cam_traj_utils.py │ │ │ └── utils.py │ │ ├── rich │ │ │ ├── resource │ │ │ │ ├── seqname2imgrange.json │ │ │ │ ├── test.txt │ │ │ │ ├── train.txt │ │ │ │ ├── val.txt │ │ │ │ └── w2az_sahmr.json │ │ │ ├── rich_motion_test.py │ │ │ └── rich_utils.py │ │ └── threedpw │ │ │ ├── threedpw_motion_test.py │ │ │ ├── threedpw_motion_train.py │ │ │ └── utils.py │ ├── model │ │ ├── common_utils │ │ │ ├── optimizer.py │ │ │ ├── scheduler.py │ │ │ └── scheduler_cfg.py │ │ └── gvhmr │ │ │ ├── callbacks │ │ │ ├── metric_3dpw.py │ │ │ ├── metric_emdb.py │ │ │ └── metric_rich.py │ │ │ ├── gvhmr_pl.py │ │ │ ├── gvhmr_pl_demo.py │ │ │ ├── pipeline │ │ │ └── gvhmr_pipeline.py │ │ │ └── utils │ │ │ ├── endecoder.py │ │ │ ├── postprocess.py │ │ │ └── stats_compose.py │ ├── network │ │ ├── base_arch │ │ │ ├── embeddings │ │ │ │ └── rotary_embedding.py │ │ │ └── transformer │ │ │ │ ├── encoder_rope.py │ │ │ │ └── layer.py │ │ ├── gvhmr │ │ │ └── relative_transformer.py │ │ └── hmr2 │ │ │ ├── __init__.py │ │ │ ├── components │ │ │ ├── __init__.py │ │ │ ├── pose_transformer.py │ │ │ └── t_cond_mlp.py │ │ │ ├── configs │ │ │ ├── __init__.py │ │ │ └── model_config.yaml │ │ │ ├── hmr2.py │ │ │ ├── smpl_head.py │ │ │ ├── utils │ │ │ ├── geometry.py │ │ │ ├── preproc.py │ │ │ └── smpl_wrapper.py │ │ │ └── vit.py │ └── utils │ │ ├── body_model │ │ ├── README.md │ │ ├── __init__.py │ │ ├── body_model.py │ │ ├── body_model_smplh.py │ │ ├── body_model_smplx.py │ │ ├── min_lbs.py │ │ ├── smpl_lite.py │ │ ├── smpl_vert_segmentation.json │ │ ├── smplx_lite.py │ │ └── utils.py │ │ ├── callbacks │ │ ├── lr_monitor.py │ │ ├── prog_bar.py │ │ ├── simple_ckpt_saver.py │ │ └── train_speed_timer.py │ │ ├── comm │ │ └── gather.py │ │ ├── eval │ │ └── eval_utils.py │ │ ├── geo │ │ ├── augment_noisy_pose.py │ │ ├── flip_utils.py │ │ ├── hmr_cam.py │ │ ├── hmr_global.py │ │ ├── quaternion.py │ │ └── transforms.py │ │ ├── geo_transform.py │ │ ├── ik │ │ └── ccd_ik.py │ │ ├── kpts │ │ └── kp2d_utils.py │ │ ├── matrix.py │ │ ├── net_utils.py │ │ ├── preproc │ │ ├── __init__.py │ │ ├── slam.py │ │ ├── tracker.py │ │ ├── vitfeat_extractor.py │ │ ├── vitpose.py │ │ └── vitpose_pytorch │ │ │ ├── __init__.py │ │ │ └── src │ │ │ └── vitpose_infer │ │ │ ├── __init__.py │ │ │ ├── builder │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ │ ├── __init__.py │ │ │ │ ├── alexnet.py │ │ │ │ ├── cpm.py │ │ │ │ ├── hourglass.py │ │ │ │ ├── hourglass_ae.py │ │ │ │ ├── hrformer.py │ │ │ │ ├── litehrnet.py │ │ │ │ ├── mobilenet_v2.py │ │ │ │ ├── mobilenet_v3.py │ │ │ │ ├── mspn.py │ │ │ │ ├── regnet.py │ │ │ │ ├── resnest.py │ │ │ │ ├── resnext.py │ │ │ │ ├── rsn.py │ │ │ │ ├── scnet.py │ │ │ │ ├── seresnet.py │ │ │ │ ├── seresnext.py │ │ │ │ ├── shufflenet_v1.py │ │ │ │ ├── shufflenet_v2.py │ │ │ │ ├── tcn.py │ │ │ │ ├── test_torch.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── channel_shuffle.py │ │ │ │ │ ├── inverted_residual.py │ │ │ │ │ ├── make_divisible.py │ │ │ │ │ ├── se_layer.py │ │ │ │ │ └── utils.py │ │ │ │ ├── vgg.py │ │ │ │ ├── vipnas_mbv3.py │ │ │ │ ├── vipnas_resnet.py │ │ │ │ └── vit.py │ │ │ ├── configs │ │ │ │ └── coco │ │ │ │ │ ├── ViTPose_base_coco_256x192.py │ │ │ │ │ ├── ViTPose_base_simple_coco_256x192.py │ │ │ │ │ ├── ViTPose_huge_coco_256x192.py │ │ │ │ │ ├── ViTPose_huge_simple_coco_256x192.py │ │ │ │ │ ├── ViTPose_large_coco_256x192.py │ │ │ │ │ ├── ViTPose_large_simple_coco_256x192.py │ │ │ │ │ └── __init__.py │ │ │ ├── heads │ │ │ │ ├── __init__.py │ │ │ │ ├── deconv_head.py │ │ │ │ ├── deeppose_regression_head.py │ │ │ │ ├── hmr_head.py │ │ │ │ ├── interhand_3d_head.py │ │ │ │ ├── temporal_regression_head.py │ │ │ │ ├── topdown_heatmap_base_head.py │ │ │ │ ├── topdown_heatmap_multi_stage_head.py │ │ │ │ ├── topdown_heatmap_simple_head.py │ │ │ │ ├── vipnas_heatmap_simple_head.py │ │ │ │ └── voxelpose_head.py │ │ │ └── model_builder.py │ │ │ ├── model_builder.py │ │ │ └── pose_utils │ │ │ ├── ViTPose_trt.py │ │ │ ├── __init__.py │ │ │ ├── convert_to_trt.py │ │ │ ├── general_utils.py │ │ │ ├── inference_test.py │ │ │ ├── logger_helper.py │ │ │ ├── pose_utils.py │ │ │ ├── pose_viz.py │ │ │ ├── timerr.py │ │ │ └── visualizer.py │ │ ├── pylogger.py │ │ ├── seq_utils.py │ │ ├── smplx_utils.py │ │ ├── video_io_utils.py │ │ ├── vis │ │ ├── README.md │ │ ├── cv2_utils.py │ │ ├── renderer.py │ │ ├── renderer_tools.py │ │ ├── renderer_utils.py │ │ └── rich_logger.py │ │ └── wis3d_utils.py ├── mdm │ ├── checkpoints │ │ ├── humanml_enc_512_50steps │ │ │ └── args.json │ │ └── t2m │ │ │ ├── Comp_v6_KLD01 │ │ │ └── opt.txt │ │ │ └── text_mot_match │ │ │ └── eval │ │ │ ├── E005.txt │ │ │ ├── E010.txt │ │ │ ├── E015.txt │ │ │ ├── E020.txt │ │ │ ├── E025.txt │ │ │ ├── E030.txt │ │ │ ├── E035.txt │ │ │ ├── E040.txt │ │ │ ├── E045.txt │ │ │ ├── E050.txt │ │ │ ├── E055.txt │ │ │ ├── E060.txt │ │ │ └── E065.txt │ ├── common │ │ ├── __init__.py │ │ ├── quaternion.py │ │ └── skeleton.py │ ├── data_loaders │ │ ├── a2m │ │ │ ├── dataset.py │ │ │ ├── humanact12poses.py │ │ │ └── uestc.py │ │ ├── get_data.py │ │ ├── humanml │ │ │ ├── README.md │ │ │ ├── common │ │ │ │ ├── quaternion.py │ │ │ │ └── skeleton.py │ │ │ ├── motion_loaders │ │ │ │ ├── __init__.py │ │ │ │ ├── comp_v6_model_dataset.py │ │ │ │ ├── dataset_motion_loader.py │ │ │ │ └── model_motion_loaders.py │ │ │ ├── networks │ │ │ │ ├── __init__.py │ │ │ │ ├── evaluator_wrapper.py │ │ │ │ ├── modules.py │ │ │ │ └── trainers.py │ │ │ ├── scripts │ │ │ │ └── motion_process.py │ │ │ └── utils │ │ │ │ ├── get_opt.py │ │ │ │ ├── metrics.py │ │ │ │ ├── paramUtil.py │ │ │ │ ├── plot_script.py │ │ │ │ ├── utils.py │ │ │ │ └── word_vectorizer.py │ │ ├── humanml_utils.py │ │ └── tensors.py │ ├── dataset │ │ ├── humanml_opt.txt │ │ └── kit_opt.txt │ ├── diffusion │ │ ├── fp16_util.py │ │ ├── gaussian_diffusion.py │ │ ├── logger.py │ │ ├── losses.py │ │ ├── nn.py │ │ ├── resample.py │ │ └── respace.py │ ├── eval │ │ ├── a2m │ │ │ ├── __init__.py │ │ │ ├── action2motion │ │ │ │ ├── accuracy.py │ │ │ │ ├── diversity.py │ │ │ │ ├── evaluate.py │ │ │ │ ├── fid.py │ │ │ │ └── models.py │ │ │ ├── gru_eval.py │ │ │ ├── recognition │ │ │ │ └── models │ │ │ │ │ ├── stgcn.py │ │ │ │ │ └── stgcnutils │ │ │ │ │ ├── graph.py │ │ │ │ │ └── tgcn.py │ │ │ ├── stgcn │ │ │ │ ├── accuracy.py │ │ │ │ ├── diversity.py │ │ │ │ ├── evaluate.py │ │ │ │ └── fid.py │ │ │ ├── stgcn_eval.py │ │ │ └── tools.py │ │ ├── eval_humanact12_uestc.py │ │ ├── eval_humanml.py │ │ └── unconstrained │ │ │ ├── evaluate.py │ │ │ ├── metrics │ │ │ ├── kid.py │ │ │ └── precision_recall.py │ │ │ └── models │ │ │ ├── stgcn.py │ │ │ └── stgcnutils │ │ │ └── graph.py │ ├── human_body_prior │ │ ├── __init__.py │ │ ├── body_model │ │ │ ├── __init__.py │ │ │ ├── body_model.py │ │ │ ├── lbs.py │ │ │ ├── parts_segm │ │ │ │ └── readme │ │ │ └── rigid_object_model.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── ik_engine.py │ │ │ ├── model_components.py │ │ │ └── vposer_model.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── angle_continuous_repres.py │ │ │ ├── configurations.py │ │ │ ├── model_loader.py │ │ │ ├── omni_tools.py │ │ │ ├── rotation_tools.py │ │ │ └── tgm_conversion.py │ │ ├── train │ │ │ ├── README.md │ │ │ ├── V02_05 │ │ │ │ ├── V02_05.py │ │ │ │ ├── V02_05.yaml │ │ │ │ └── __init__.py │ │ │ ├── __init__.py │ │ │ └── vposer_trainer.py │ │ └── visualizations │ │ │ ├── __init__.py │ │ │ └── training_visualization.py │ ├── model │ │ ├── cfg_sampler.py │ │ ├── mdm.py │ │ ├── rotation2xyz.py │ │ └── smpl.py │ ├── paramUtil.py │ ├── prepare │ │ ├── download_a2m_datasets.sh │ │ ├── download_glove.sh │ │ ├── download_recognition_models.sh │ │ ├── download_recognition_unconstrained_models.sh │ │ ├── download_smpl_files.sh │ │ ├── download_t2m_evaluators.sh │ │ └── download_unconstrained_datasets.sh │ ├── train │ │ ├── __init__.py │ │ ├── train_mdm.py │ │ ├── train_platforms.py │ │ └── training_loop.py │ ├── utils │ │ ├── PYTORCH3D_LICENSE │ │ ├── config.py │ │ ├── dist_util.py │ │ ├── fixseed.py │ │ ├── misc.py │ │ ├── model_util.py │ │ ├── parser_util.py │ │ └── rotation_conversions.py │ └── visualize │ │ ├── joints2smpl │ │ ├── README.md │ │ ├── environment.yaml │ │ ├── fit_seq.py │ │ └── src │ │ │ ├── config.py │ │ │ ├── customloss.py │ │ │ ├── prior.py │ │ │ └── smplify.py │ │ ├── motions2hik.py │ │ ├── render_mesh.py │ │ ├── simplify_loc2rot.py │ │ └── vis_utils.py └── ml-depth-pro │ ├── ACKNOWLEDGEMENTS.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── get_pretrained_models.sh │ ├── pyproject.toml │ └── src │ └── depth_pro │ ├── __init__.py │ ├── cli │ ├── __init__.py │ └── run.py │ ├── depth_pro.py │ ├── eval │ ├── boundary_metrics.py │ └── dis5k_sample_list.txt │ ├── network │ ├── __init__.py │ ├── decoder.py │ ├── encoder.py │ ├── fov.py │ ├── vit.py │ └── vit_factory.py │ └── utils.py ├── scripts ├── generate_2d_hoi_images.sh ├── generate_4d_hoi_samples.sh ├── generate_human_motion.sh ├── generate_human_motion_rebuttal.sh ├── generate_object_motion.sh ├── train_lora.sh ├── train_omdm.sh └── videos │ ├── get.sh │ └── post_i2v.sh ├── setup.py ├── src ├── david │ ├── inference_mdm.py │ ├── inference_omdm.py │ ├── joint2smplx.py │ ├── process_mdm.py │ ├── process_omdm.py │ ├── train_lora.py │ └── train_omdm.py ├── generation │ ├── estimate_depth.py │ ├── extract_canny.py │ ├── generate_images.py │ ├── generate_videos.py │ ├── optimize_depth.py │ ├── pnp.py │ ├── predict_human.py │ ├── prepare_4dhoi.py │ ├── preprocess_videos.py │ ├── raycast.py │ ├── render_objects.py │ ├── resize_videos.py │ └── track.py └── visualization │ ├── visualize_4d_hoi_sample.py │ ├── visualize_4d_hoi_sample_with_camera.py │ ├── visualize_4d_hoi_sample_with_camera_still.py │ ├── visualize_david_output.py │ └── visualize_estimated_OMOMO.py └── utils ├── blenderproc.py ├── coap ├── __init__.py ├── coap.py └── modules.py ├── dataset.py ├── pipeline_flux_controlnet.py ├── transformations.py └── videos.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/README.md -------------------------------------------------------------------------------- /assets/2dhoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/assets/2dhoi.png -------------------------------------------------------------------------------- /assets/2dhoivid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/assets/2dhoivid.gif -------------------------------------------------------------------------------- /assets/4dhoi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/assets/4dhoi.gif -------------------------------------------------------------------------------- /assets/4dhoi_incam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/assets/4dhoi_incam.gif -------------------------------------------------------------------------------- /assets/canny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/assets/canny.png -------------------------------------------------------------------------------- /assets/render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/assets/render.png -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /constants/coco_thing_classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/constants/coco_thing_classes.json -------------------------------------------------------------------------------- /constants/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/constants/config.py -------------------------------------------------------------------------------- /constants/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/constants/datasets.py -------------------------------------------------------------------------------- /constants/david.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/constants/david.py -------------------------------------------------------------------------------- /constants/lvis_thing_classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/constants/lvis_thing_classes.json -------------------------------------------------------------------------------- /constants/metadata.py: -------------------------------------------------------------------------------- 1 | DEFAULT_SEED = 42 -------------------------------------------------------------------------------- /constants/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/constants/segmentation.py -------------------------------------------------------------------------------- /constants/videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/constants/videos.py -------------------------------------------------------------------------------- /constants/visualizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/constants/visualizers.py -------------------------------------------------------------------------------- /imports/DPVO/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/.gitignore -------------------------------------------------------------------------------- /imports/DPVO/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/.gitmodules -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/.travis.yml -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/LICENSE.txt -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/README.md -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/demo/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/demo/demo.cpp -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/demo/images/image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/demo/images/image0.png -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/demo/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/demo/images/image1.png -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/demo/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/demo/images/image2.png -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/demo/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/demo/images/image3.png -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/BowVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/BowVector.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/DBoW2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/DBoW2.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/FBrief.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/FBrief.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/FClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/FClass.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/FORB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/FORB.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/FSurf64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/FSurf64.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/FeatureVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/FeatureVector.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/QueryResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/QueryResults.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/ScoringObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/ScoringObject.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/TemplatedDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/TemplatedDatabase.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/include/DBoW2/TemplatedVocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/include/DBoW2/TemplatedVocabulary.h -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/package.xml -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/src/BowVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/src/BowVector.cpp -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/src/DBoW2.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/src/DBoW2.cmake.in -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/src/FBrief.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/src/FBrief.cpp -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/src/FORB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/src/FORB.cpp -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/src/FSurf64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/src/FSurf64.cpp -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/src/FeatureVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/src/FeatureVector.cpp -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/src/QueryResults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/src/QueryResults.cpp -------------------------------------------------------------------------------- /imports/DPVO/DBoW2/src/ScoringObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DBoW2/src/ScoringObject.cpp -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.appveyor.yml -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.clang-format -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.clang-tidy -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.cmake-format.yaml -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.github/CODEOWNERS -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.github/dependabot.yml -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.github/labeler.yml -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.gitignore -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/.readthedocs.yml -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/LICENSE -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/MANIFEST.in -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/README.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/Doxyfile -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/advanced/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/advanced/misc.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/basics.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/benchmark.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/benchmark.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/changelog.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/classes.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/cmake/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/cmake/index.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/compiling.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/conf.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/faq.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/index.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/installing.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/limitations.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/pybind11-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/pybind11-logo.png -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/reference.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/release.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/requirements.txt -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/docs/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/docs/upgrade.rst -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/include/pybind11/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/include/pybind11/gil.h -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/include/pybind11/stl.h -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/noxfile.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/pybind11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/pybind11/__init__.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/pybind11/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/pybind11/__main__.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/pybind11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/pybind11/_version.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/pybind11/_version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/pybind11/_version.pyi -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/pybind11/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/pybind11/commands.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/pybind11/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/pyproject.toml -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/setup.cfg -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/setup.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/tools/FindCatch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/tools/FindCatch.cmake -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/tools/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/tools/FindEigen3.cmake -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/tools/check-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/tools/check-style.sh -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/tools/libsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/tools/libsize.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/tools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/tools/pyproject.toml -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/pybind11/tools/setup_main.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/pybind11/tools/setup_main.py.in -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/setup.py -------------------------------------------------------------------------------- /imports/DPVO/DPRetrieval/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPRetrieval/src/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/dpviewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/dpviewer/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/dpviewer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/dpviewer/__init__.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/dpviewer/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/dpviewer/viewer.cpp -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/dpviewer/viewer_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/dpviewer/viewer_cuda.cu -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/dpviewer/viewer_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/dpviewer/viewer_cuda.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.appveyor.yml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.clang-format -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.clang-tidy -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.cmake-format.yaml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.gitattributes: -------------------------------------------------------------------------------- 1 | docs/*.svg binary 2 | -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.github/CODEOWNERS -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.github/dependabot.yml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.github/labeler.yml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.github/workflows/ci.yml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.github/workflows/pip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.github/workflows/pip.yml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.gitignore -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.pre-commit-config.yaml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/.readthedocs.yml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/LICENSE -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/MANIFEST.in -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/README.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/Doxyfile -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/advanced/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/advanced/classes.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/advanced/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/advanced/misc.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/basics.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/benchmark.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/benchmark.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/changelog.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/classes.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/cmake/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/cmake/index.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/compiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/compiling.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/conf.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/faq.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/index.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/installing.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/limitations.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/pybind11-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/pybind11-logo.png -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/reference.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/release.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/requirements.txt -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/docs/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/docs/upgrade.rst -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/attr.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/cast.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/chrono.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/common.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/eigen.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/embed.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/eval.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/gil.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/numpy.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/include/pybind11/stl.h -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/noxfile.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/pybind11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/pybind11/__init__.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/pybind11/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/pybind11/__main__.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/pybind11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/pybind11/_version.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/pybind11/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/pybind11/commands.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/pybind11/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/pybind11/setup_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/pybind11/setup_helpers.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/pyproject.toml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/setup.cfg -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/setup.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/FindCatch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/FindCatch.cmake -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/FindEigen3.cmake -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/check-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/check-style.sh -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/libsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/libsize.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/make_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/make_changelog.py -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/pybind11Tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/pybind11Tools.cmake -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/pyproject.toml -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/setup_global.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/setup_global.py.in -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/pybind11/tools/setup_main.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/pybind11/tools/setup_main.py.in -------------------------------------------------------------------------------- /imports/DPVO/DPViewer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/DPViewer/setup.py -------------------------------------------------------------------------------- /imports/DPVO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/LICENSE -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/.gitignore -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/.gitmodules -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/LICENCE -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/README.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/AndroidUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/AndroidUtils.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/CreateMethodCallFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/CreateMethodCallFile.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/EmbedBinaryFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/EmbedBinaryFiles.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/EmscriptenUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/EmscriptenUtils.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindDC1394.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindDC1394.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindDepthSense.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindDepthSense.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindFFMPEG.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindGLUES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindGLUES.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindLibraw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindLibraw.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindLz4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindLz4.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindMediaFoundation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindMediaFoundation.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindOculus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindOculus.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindOpenEXR.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindOpenNI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindOpenNI.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindOpenNI2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindOpenNI2.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindPleora.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindPleora.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindRealSense.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindRealSense.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindRealSense2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindRealSense2.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindTeliCam.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindTeliCam.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindTooN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindTooN.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/FindXrandr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/FindXrandr.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/Findlibusb1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/Findlibusb1.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/Findpthread.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/Findpthread.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/Finduvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/Finduvc.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/Findzstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/Findzstd.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/MakePythonWheel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/MakePythonWheel.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/PangolinConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/PangolinConfig.cmake.in -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/PangolinFactory.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/PangolinFactory.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/SetPlatformVars.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/SetPlatformVars.cmake -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/wheel-dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/wheel-dist-info/METADATA -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/wheel-dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/cmake/wheel-dist-info/WHEEL -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/cmake/wheel-dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | @python_module@ 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/components/pango_core/include/pangolin/utils/signal_slot.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/components/pango_core/src/dummy.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/components/pango_core/src/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/components/pango_core/src/uri.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/components/pango_python/pybind11/pybind11/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/components/pango_vars/src/vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/components/pango_vars/src/vars.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/components/pango_windowing/include/pangolin/windowing/X11GlContext.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/components/tinyobj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/components/tinyobj/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/components/tinyobj/src/tinyobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/components/tinyobj/src/tinyobj.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/BasicOpenGL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/BasicOpenGL/README.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/HelloPangolin/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/HelloPangolin/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/SimpleDisplay/app.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/SimpleDisplay/app.cfg -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/SimpleDisplay/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/SimpleDisplay/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/SimplePlot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/SimplePlot/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/SimplePlot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/SimplePlot/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/SimpleRecord/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/SimpleRecord/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/SimpleScene/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/SimpleScene/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/SimpleVideo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/SimpleVideo/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/VBODisplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/VBODisplay/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/VBODisplay/kernal.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/VBODisplay/kernal.cu -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/examples/VBODisplay/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/examples/VBODisplay/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/package.xml -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/install_prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/install_prerequisites.sh -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/utils/ansi2html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/utils/ansi2html.sh -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/.gitattributes -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/.gitignore -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/.vcpkg-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/CHANGELOG.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/CONTRIBUTING.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/CONTRIBUTING_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/CONTRIBUTING_zh.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/LICENSE.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/NOTICE.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/README.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/README_es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/README_es.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/README_fr.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/README_ko_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/README_ko_KR.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/README_zh_CN.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/bootstrap-vcpkg.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell.exe -NoProfile -ExecutionPolicy Bypass "& {& '%~dp0scripts\bootstrap.ps1' %*}" 3 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/bootstrap-vcpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/bootstrap-vcpkg.sh -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/docs/README.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/docs/_config.yml -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/docs/about/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/docs/about/faq.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/docs/examples/vcpkg_android_example_cmake/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/docs/examples/vcpkg_android_example_cmake_script/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/docs/regenerate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/docs/regenerate.ps1 -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/docs/users/mingw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/docs/users/mingw.md -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/3fd/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/3fd/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/ace/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/ace/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/ade/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/ade/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/aom/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/aom/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/apr/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/apr/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/arb/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/arb/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/arrow/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/arrow/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/asiosdk/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/asiosdk/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/atk/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/atk/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/atkmm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/atkmm/COPYING -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/b64/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/b64/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/bde/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/bde/vcpkg.json -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/beast/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/bitserializer-cpprestjson/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/bitserializer-pugixml/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/bitserializer-rapidjson/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/bitserializer-rapidyaml/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/blend2d/usage: -------------------------------------------------------------------------------- 1 | Define BL_STATIC before any @PORT@ includes. 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/boost-modular-build-helper/nothing.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/boost/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/boost/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/boost/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/bzip2/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/bzip2/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/catch/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/cgal/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/cgal/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/chromium-base/res/LASTCHANGE.committime: -------------------------------------------------------------------------------- 1 | 1594430814 -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/chromium-base/res/icu/config.gni: -------------------------------------------------------------------------------- 1 | declare_args() { 2 | icu_use_data_file = false 3 | } -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/chromium-base/res/protobuf/proto_library.gni: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/chromium-base/res/tools/win/DebugVisualizers/chrome.natvis: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/co/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/colmap/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/colmap/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/comms/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/comms/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/cub/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/cub/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/cudnn/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/cudnn/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/dcmtk/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/dcmtk/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/dpdk/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/dpdk/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/drogon/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/drogon/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/ecm/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/ecm/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/ffmpeg/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/ffmpeg/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/fmt/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/fmt/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/gdal/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/gdal/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/gdcm2/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/geos/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/geos/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/gettimeofday/gettimeofday.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | gettimeofday 3 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/gflags/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/gflags/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/ginkgo/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/ginkgo/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/glew/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/glew/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/google-cloud-cpp-common/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/google-cloud-cpp-spanner/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/googleapis/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/gsl/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/gsl/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/gtest/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/gtest/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/hfsm2/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/hfsm2/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/hps/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/hps/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/ilmbase/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/irrxml/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/isal/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/isal/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/jxrlib/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/jxrlib/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/klein/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/klein/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/knet/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/knet/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/lcms/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/lcms/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/leaf/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/libass/config.h.in: -------------------------------------------------------------------------------- 1 | #define CONFIG_SOURCEVERSION "tarball: 0.15.1" 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/libpq/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/libpq/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/libraw/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/libraw/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/libsigcpp-3/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/libssh/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/libssh/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/libusb/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/libusb/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/lodepng-c/portfile.cmake: -------------------------------------------------------------------------------- 1 | SET(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/lua/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/lua/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/magic-get/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/mapnik/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/mapnik/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/mman/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/mman/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/mpi/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/ms-angle/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/nanovg/nanovgConfig.cmake: -------------------------------------------------------------------------------- 1 | include(${CMAKE_CURRENT_LIST_DIR}/nanovgTargets.cmake) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/nccl/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/nccl/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/nmap/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/nmap/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/opencl/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/opencl/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/opencv/portfile.cmake: -------------------------------------------------------------------------------- 1 | SET(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/opendnp3/deps/asio.cmake: -------------------------------------------------------------------------------- 1 | find_package(asio CONFIG REQUIRED) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/opengl/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/opengl/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/openssl-unix/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/openssl-uwp/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/openssl-windows/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/orc/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/orc/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/pcl/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/pcl/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/pcre/unofficial-pcre-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/unofficial-pcre-targets.cmake") 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/pdal-c/cmake-project-include.cmake: -------------------------------------------------------------------------------- 1 | if(WIN32) 2 | add_compile_definitions(NOMINMAX) 3 | endif() 4 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/pdal/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/pdal/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/pqp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/pqp/LICENSE -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/proj/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/proj/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/proj4/portfile.cmake: -------------------------------------------------------------------------------- 1 | SET(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/pthread/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/qhull/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/qhull/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/qt/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/qt5-modularscripts/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/qt5/portfile.cmake: -------------------------------------------------------------------------------- 1 | SET(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/readline-osx/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/sail/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/sail/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/sdl2pp/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/sdl2pp/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/secp256k1/secp256k1-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/unofficial-secp256k1-targets.cmake") 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/sfml/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/sfml/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/skia/icu.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/skia/icu.gn -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/skia/piex.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/skia/piex.gn -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/skia/zlib.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/skia/zlib.gn -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/sockpp/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/sockpp/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/spdk/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/spdk/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/tbb/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/tbb/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/v8/icu.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/v8/icu.gn -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/v8/v8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/v8/v8.patch -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/v8/v8.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/v8/v8.pc.in -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/v8/zlib.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/v8/zlib.gn -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/vtk/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/vtk/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/vulkan/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/vulkan/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/wangle/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/wangle/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/xeus/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/xeus/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/yasm-tool/portfile.cmake: -------------------------------------------------------------------------------- 1 | SET(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/zlib/LICENSE -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/zlib/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/zlib/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/zstd/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/zstd/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/ports/zstr/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/ports/zstr/usage -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/scripts/boost/.gitignore: -------------------------------------------------------------------------------- 1 | /boost 2 | /downloads 3 | /libs -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/scripts/test_ports/llfio-run-tests/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/scripts/test_ports/outcome-run-tests/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/scripts/test_ports/vcpkg-ci-boost/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/scripts/test_ports/vcpkg-ci-ffmpeg/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/scripts/test_ports/vcpkg-ci-llvm/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/scripts/test_ports/vcpkg-ci-opencv/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/scripts/test_ports/vcpkg-ci-paraview/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/scripts/vcpkg/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/scripts/vcpkg/shell.nix -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/ModelViewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/ModelViewer/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/ModelViewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/ModelViewer/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/ModelViewer/rendertree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/ModelViewer/rendertree.h -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/ModelViewer/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/ModelViewer/shader.h -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/ModelViewer/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/ModelViewer/util.h -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/Plotter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/Plotter/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/Plotter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/Plotter/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/VideoConvert/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/VideoConvert/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/VideoJson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/VideoJson/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/VideoJson/main-print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/VideoJson/main-print.cpp -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/VideoViewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/VideoViewer/CMakeLists.txt -------------------------------------------------------------------------------- /imports/DPVO/Pangolin/tools/VideoViewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/Pangolin/tools/VideoViewer/main.cpp -------------------------------------------------------------------------------- /imports/DPVO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/README.md -------------------------------------------------------------------------------- /imports/DPVO/calib/barn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/calib/barn.txt -------------------------------------------------------------------------------- /imports/DPVO/calib/eth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/calib/eth.txt -------------------------------------------------------------------------------- /imports/DPVO/calib/euroc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/calib/euroc.txt -------------------------------------------------------------------------------- /imports/DPVO/calib/iphone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/calib/iphone.txt -------------------------------------------------------------------------------- /imports/DPVO/calib/kitti.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/calib/kitti.txt -------------------------------------------------------------------------------- /imports/DPVO/calib/monovo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/calib/monovo.txt -------------------------------------------------------------------------------- /imports/DPVO/calib/tartan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/calib/tartan.txt -------------------------------------------------------------------------------- /imports/DPVO/calib/tum3.txt: -------------------------------------------------------------------------------- 1 | 535.4 539.2 320.1 247.6 -------------------------------------------------------------------------------- /imports/DPVO/calib/viper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/calib/viper.txt -------------------------------------------------------------------------------- /imports/DPVO/config/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/config/default.yaml -------------------------------------------------------------------------------- /imports/DPVO/config/fast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/config/fast.yaml -------------------------------------------------------------------------------- /imports/DPVO/datasets/euroc_groundtruth/MH_01_easy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/datasets/euroc_groundtruth/MH_01_easy.txt -------------------------------------------------------------------------------- /imports/DPVO/datasets/euroc_groundtruth/MH_02_easy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/datasets/euroc_groundtruth/MH_02_easy.txt -------------------------------------------------------------------------------- /imports/DPVO/datasets/euroc_groundtruth/V1_01_easy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/datasets/euroc_groundtruth/V1_01_easy.txt -------------------------------------------------------------------------------- /imports/DPVO/datasets/euroc_groundtruth/V2_01_easy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/datasets/euroc_groundtruth/V2_01_easy.txt -------------------------------------------------------------------------------- /imports/DPVO/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/demo.py -------------------------------------------------------------------------------- /imports/DPVO/download_models_and_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/download_models_and_data.sh -------------------------------------------------------------------------------- /imports/DPVO/dpvo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/DPVO/dpvo/altcorr/__init__.py: -------------------------------------------------------------------------------- 1 | from .correlation import corr, patchify -------------------------------------------------------------------------------- /imports/DPVO/dpvo/altcorr/correlation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/altcorr/correlation.cpp -------------------------------------------------------------------------------- /imports/DPVO/dpvo/altcorr/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/altcorr/correlation.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/altcorr/correlation_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/altcorr/correlation_kernel.cu -------------------------------------------------------------------------------- /imports/DPVO/dpvo/ba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/ba.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/blocks.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/config.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/data_readers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /imports/DPVO/dpvo/data_readers/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/data_readers/augmentation.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/data_readers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/data_readers/base.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/data_readers/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/data_readers/factory.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/data_readers/frame_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/data_readers/frame_utils.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/data_readers/rgbd_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/data_readers/rgbd_utils.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/data_readers/tartan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/data_readers/tartan.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/data_readers/tartan_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/data_readers/tartan_test.txt -------------------------------------------------------------------------------- /imports/DPVO/dpvo/dpvo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/dpvo.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/extractor.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/fastba/__init__.py: -------------------------------------------------------------------------------- 1 | from .ba import BA, neighbors, reproject -------------------------------------------------------------------------------- /imports/DPVO/dpvo/fastba/ba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/fastba/ba.cpp -------------------------------------------------------------------------------- /imports/DPVO/dpvo/fastba/ba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/fastba/ba.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/fastba/ba_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/fastba/ba_cuda.cu -------------------------------------------------------------------------------- /imports/DPVO/dpvo/fastba/block_e.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/fastba/block_e.cu -------------------------------------------------------------------------------- /imports/DPVO/dpvo/fastba/block_e.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/fastba/block_e.cuh -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/__init__.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/broadcasting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/broadcasting.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/gradcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/gradcheck.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/group_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/group_ops.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/groups.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/include/common.h -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/include/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/include/dispatch.h -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/include/lietorch_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/include/lietorch_cpu.h -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/include/lietorch_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/include/lietorch_gpu.h -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/include/rxso3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/include/rxso3.h -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/include/se3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/include/se3.h -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/include/sim3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/include/sim3.h -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/include/so3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/include/so3.h -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/run_tests.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/src/lietorch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/src/lietorch.cpp -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/src/lietorch_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/src/lietorch_cpu.cpp -------------------------------------------------------------------------------- /imports/DPVO/dpvo/lietorch/src/lietorch_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/lietorch/src/lietorch_gpu.cu -------------------------------------------------------------------------------- /imports/DPVO/dpvo/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/logger.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/loop_closure/long_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/loop_closure/long_term.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/loop_closure/optim_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/loop_closure/optim_utils.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/loop_closure/retrieval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/loop_closure/retrieval/__init__.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/net.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/patchgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/patchgraph.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/plot_utils.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/projective_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/projective_ops.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/stream.py -------------------------------------------------------------------------------- /imports/DPVO/dpvo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/dpvo/utils.py -------------------------------------------------------------------------------- /imports/DPVO/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/environment.yml -------------------------------------------------------------------------------- /imports/DPVO/evaluate_euroc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/evaluate_euroc.py -------------------------------------------------------------------------------- /imports/DPVO/evaluate_icl_nuim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/evaluate_icl_nuim.py -------------------------------------------------------------------------------- /imports/DPVO/evaluate_kitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/evaluate_kitti.py -------------------------------------------------------------------------------- /imports/DPVO/evaluate_tartan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/evaluate_tartan.py -------------------------------------------------------------------------------- /imports/DPVO/evaluate_tum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/evaluate_tum.py -------------------------------------------------------------------------------- /imports/DPVO/logs/dpv_slam/euroc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/logs/dpv_slam/euroc.txt -------------------------------------------------------------------------------- /imports/DPVO/logs/dpv_slam/tartan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/logs/dpv_slam/tartan.txt -------------------------------------------------------------------------------- /imports/DPVO/logs/dpv_slam/tum_rgbd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/logs/dpv_slam/tum_rgbd.txt -------------------------------------------------------------------------------- /imports/DPVO/logs/euroc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/logs/euroc.txt -------------------------------------------------------------------------------- /imports/DPVO/logs/euroc_fast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/logs/euroc_fast.txt -------------------------------------------------------------------------------- /imports/DPVO/logs/icl_nuim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/logs/icl_nuim.txt -------------------------------------------------------------------------------- /imports/DPVO/logs/tartan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/logs/tartan.txt -------------------------------------------------------------------------------- /imports/DPVO/logs/tum_rgbd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/logs/tum_rgbd.txt -------------------------------------------------------------------------------- /imports/DPVO/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/setup.py -------------------------------------------------------------------------------- /imports/DPVO/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/DPVO/train.py -------------------------------------------------------------------------------- /imports/cotracker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/__init__.py -------------------------------------------------------------------------------- /imports/cotracker/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/datasets/__init__.py -------------------------------------------------------------------------------- /imports/cotracker/datasets/dataclass_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/datasets/dataclass_utils.py -------------------------------------------------------------------------------- /imports/cotracker/datasets/dr_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/datasets/dr_dataset.py -------------------------------------------------------------------------------- /imports/cotracker/datasets/kubric_movif_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/datasets/kubric_movif_dataset.py -------------------------------------------------------------------------------- /imports/cotracker/datasets/real_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/datasets/real_dataset.py -------------------------------------------------------------------------------- /imports/cotracker/datasets/tap_vid_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/datasets/tap_vid_datasets.py -------------------------------------------------------------------------------- /imports/cotracker/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/datasets/utils.py -------------------------------------------------------------------------------- /imports/cotracker/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/evaluation/__init__.py -------------------------------------------------------------------------------- /imports/cotracker/evaluation/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/evaluation/core/__init__.py -------------------------------------------------------------------------------- /imports/cotracker/evaluation/core/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/evaluation/core/eval_utils.py -------------------------------------------------------------------------------- /imports/cotracker/evaluation/core/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/evaluation/core/evaluator.py -------------------------------------------------------------------------------- /imports/cotracker/evaluation/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/evaluation/evaluate.py -------------------------------------------------------------------------------- /imports/cotracker/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/__init__.py -------------------------------------------------------------------------------- /imports/cotracker/models/bootstap_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/bootstap_predictor.py -------------------------------------------------------------------------------- /imports/cotracker/models/build_cotracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/build_cotracker.py -------------------------------------------------------------------------------- /imports/cotracker/models/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/core/__init__.py -------------------------------------------------------------------------------- /imports/cotracker/models/core/cotracker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/core/cotracker/__init__.py -------------------------------------------------------------------------------- /imports/cotracker/models/core/cotracker/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/core/cotracker/blocks.py -------------------------------------------------------------------------------- /imports/cotracker/models/core/cotracker/cotracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/core/cotracker/cotracker.py -------------------------------------------------------------------------------- /imports/cotracker/models/core/cotracker/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/core/cotracker/losses.py -------------------------------------------------------------------------------- /imports/cotracker/models/core/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/core/embeddings.py -------------------------------------------------------------------------------- /imports/cotracker/models/core/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/core/model_utils.py -------------------------------------------------------------------------------- /imports/cotracker/models/evaluation_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/models/evaluation_predictor.py -------------------------------------------------------------------------------- /imports/cotracker/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/predictor.py -------------------------------------------------------------------------------- /imports/cotracker/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/utils/__init__.py -------------------------------------------------------------------------------- /imports/cotracker/utils/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/utils/train_utils.py -------------------------------------------------------------------------------- /imports/cotracker/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/utils/visualizer.py -------------------------------------------------------------------------------- /imports/cotracker/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/cotracker/version.py -------------------------------------------------------------------------------- /imports/genpose/configs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/configs/config.py -------------------------------------------------------------------------------- /imports/genpose/datasets/datasets_genpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/datasets/datasets_genpose.py -------------------------------------------------------------------------------- /imports/genpose/datasets/datasets_genpose_RT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/datasets/datasets_genpose_RT.py -------------------------------------------------------------------------------- /imports/genpose/networks/decoder_head/rot_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/decoder_head/rot_head.py -------------------------------------------------------------------------------- /imports/genpose/networks/decoder_head/trans_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/decoder_head/trans_head.py -------------------------------------------------------------------------------- /imports/genpose/networks/gf_algorithms/energynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/gf_algorithms/energynet.py -------------------------------------------------------------------------------- /imports/genpose/networks/gf_algorithms/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/gf_algorithms/losses.py -------------------------------------------------------------------------------- /imports/genpose/networks/gf_algorithms/losses_RT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/gf_algorithms/losses_RT.py -------------------------------------------------------------------------------- /imports/genpose/networks/gf_algorithms/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/gf_algorithms/samplers.py -------------------------------------------------------------------------------- /imports/genpose/networks/gf_algorithms/score_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/gf_algorithms/score_utils.py -------------------------------------------------------------------------------- /imports/genpose/networks/gf_algorithms/scorenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/gf_algorithms/scorenet.py -------------------------------------------------------------------------------- /imports/genpose/networks/gf_algorithms/scorenet_RT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/gf_algorithms/scorenet_RT.py -------------------------------------------------------------------------------- /imports/genpose/networks/gf_algorithms/sde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/gf_algorithms/sde.py -------------------------------------------------------------------------------- /imports/genpose/networks/posenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/posenet.py -------------------------------------------------------------------------------- /imports/genpose/networks/posenet_RT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/posenet_RT.py -------------------------------------------------------------------------------- /imports/genpose/networks/posenet_RT_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/posenet_RT_sequence.py -------------------------------------------------------------------------------- /imports/genpose/networks/posenet_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/posenet_agent.py -------------------------------------------------------------------------------- /imports/genpose/networks/posenet_agent_RT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/posenet_agent_RT.py -------------------------------------------------------------------------------- /imports/genpose/networks/posenet_agent_RT_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/posenet_agent_RT_sequence.py -------------------------------------------------------------------------------- /imports/genpose/networks/pts_encoder/pointnet2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/pts_encoder/pointnet2.py -------------------------------------------------------------------------------- /imports/genpose/networks/pts_encoder/pointnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/pts_encoder/pointnets.py -------------------------------------------------------------------------------- /imports/genpose/networks/reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/networks/reward.py -------------------------------------------------------------------------------- /imports/genpose/utils/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/data_augmentation.py -------------------------------------------------------------------------------- /imports/genpose/utils/datasets_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/datasets_utils.py -------------------------------------------------------------------------------- /imports/genpose/utils/genpose_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/genpose_utils.py -------------------------------------------------------------------------------- /imports/genpose/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/metrics.py -------------------------------------------------------------------------------- /imports/genpose/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/misc.py -------------------------------------------------------------------------------- /imports/genpose/utils/sgpa_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/sgpa_utils.py -------------------------------------------------------------------------------- /imports/genpose/utils/so3_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/so3_visualize.py -------------------------------------------------------------------------------- /imports/genpose/utils/tracking_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/tracking_utils.py -------------------------------------------------------------------------------- /imports/genpose/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/genpose/utils/visualize.py -------------------------------------------------------------------------------- /imports/hmr4d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/__init__.py -------------------------------------------------------------------------------- /imports/hmr4d/build_gvhmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/build_gvhmr.py -------------------------------------------------------------------------------- /imports/hmr4d/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/__init__.py -------------------------------------------------------------------------------- /imports/hmr4d/configs/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/demo.yaml -------------------------------------------------------------------------------- /imports/hmr4d/configs/exp/gvhmr/mixed/mixed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/exp/gvhmr/mixed/mixed.yaml -------------------------------------------------------------------------------- /imports/hmr4d/configs/global/debug/debug_train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/global/debug/debug_train.yaml -------------------------------------------------------------------------------- /imports/hmr4d/configs/global/task/gvhmr/test_3dpw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/global/task/gvhmr/test_3dpw.yaml -------------------------------------------------------------------------------- /imports/hmr4d/configs/global/task/gvhmr/test_emdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/global/task/gvhmr/test_emdb.yaml -------------------------------------------------------------------------------- /imports/hmr4d/configs/global/task/gvhmr/test_rich.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/global/task/gvhmr/test_rich.yaml -------------------------------------------------------------------------------- /imports/hmr4d/configs/hydra/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/hydra/default.yaml -------------------------------------------------------------------------------- /imports/hmr4d/configs/siga24_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/siga24_release.yaml -------------------------------------------------------------------------------- /imports/hmr4d/configs/store_gvhmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/store_gvhmr.py -------------------------------------------------------------------------------- /imports/hmr4d/configs/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/configs/train.yaml -------------------------------------------------------------------------------- /imports/hmr4d/datamodule/mocap_trainX_testY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/datamodule/mocap_trainX_testY.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/bedlam/bedlam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/bedlam/bedlam.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/bedlam/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/bedlam/utils.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/emdb/emdb_motion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/emdb/emdb_motion_test.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/emdb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/emdb/utils.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/h36m/camera-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/h36m/camera-parameters.json -------------------------------------------------------------------------------- /imports/hmr4d/dataset/h36m/h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/h36m/h36m.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/h36m/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/h36m/utils.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/imgfeat_motion/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/imgfeat_motion/base_dataset.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/pure_motion/amass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/pure_motion/amass.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/pure_motion/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/pure_motion/base_dataset.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/pure_motion/cam_traj_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/pure_motion/cam_traj_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/pure_motion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/pure_motion/utils.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/rich/resource/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/rich/resource/test.txt -------------------------------------------------------------------------------- /imports/hmr4d/dataset/rich/resource/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/rich/resource/train.txt -------------------------------------------------------------------------------- /imports/hmr4d/dataset/rich/resource/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/rich/resource/val.txt -------------------------------------------------------------------------------- /imports/hmr4d/dataset/rich/resource/w2az_sahmr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/rich/resource/w2az_sahmr.json -------------------------------------------------------------------------------- /imports/hmr4d/dataset/rich/rich_motion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/rich/rich_motion_test.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/rich/rich_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/rich/rich_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/threedpw/threedpw_motion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/threedpw/threedpw_motion_test.py -------------------------------------------------------------------------------- /imports/hmr4d/dataset/threedpw/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/dataset/threedpw/utils.py -------------------------------------------------------------------------------- /imports/hmr4d/model/common_utils/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/common_utils/optimizer.py -------------------------------------------------------------------------------- /imports/hmr4d/model/common_utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/common_utils/scheduler.py -------------------------------------------------------------------------------- /imports/hmr4d/model/common_utils/scheduler_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/common_utils/scheduler_cfg.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/callbacks/metric_3dpw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/callbacks/metric_3dpw.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/callbacks/metric_emdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/callbacks/metric_emdb.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/callbacks/metric_rich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/callbacks/metric_rich.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/gvhmr_pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/gvhmr_pl.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/gvhmr_pl_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/gvhmr_pl_demo.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/pipeline/gvhmr_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/pipeline/gvhmr_pipeline.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/utils/endecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/utils/endecoder.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/utils/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/utils/postprocess.py -------------------------------------------------------------------------------- /imports/hmr4d/model/gvhmr/utils/stats_compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/model/gvhmr/utils/stats_compose.py -------------------------------------------------------------------------------- /imports/hmr4d/network/base_arch/transformer/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/base_arch/transformer/layer.py -------------------------------------------------------------------------------- /imports/hmr4d/network/gvhmr/relative_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/gvhmr/relative_transformer.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/__init__.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/components/t_cond_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/components/t_cond_mlp.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/configs/__init__.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/configs/model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/configs/model_config.yaml -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/hmr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/hmr2.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/smpl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/smpl_head.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/utils/geometry.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/utils/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/utils/preproc.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/utils/smpl_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/utils/smpl_wrapper.py -------------------------------------------------------------------------------- /imports/hmr4d/network/hmr2/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/network/hmr2/vit.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/README.md: -------------------------------------------------------------------------------- 1 | # README 2 | 3 | Contents of this folder are modified from HuMoR repository. -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/body_model/__init__.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/body_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/body_model/body_model.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/body_model_smplh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/body_model/body_model_smplh.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/body_model_smplx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/body_model/body_model_smplx.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/min_lbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/body_model/min_lbs.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/smpl_lite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/body_model/smpl_lite.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/smplx_lite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/body_model/smplx_lite.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/body_model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/body_model/utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/callbacks/lr_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/callbacks/lr_monitor.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/callbacks/prog_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/callbacks/prog_bar.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/callbacks/simple_ckpt_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/callbacks/simple_ckpt_saver.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/callbacks/train_speed_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/callbacks/train_speed_timer.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/comm/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/comm/gather.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/eval/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/eval/eval_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/geo/augment_noisy_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/geo/augment_noisy_pose.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/geo/flip_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/geo/flip_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/geo/hmr_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/geo/hmr_cam.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/geo/hmr_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/geo/hmr_global.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/geo/quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/geo/quaternion.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/geo/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/geo/transforms.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/geo_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/geo_transform.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/ik/ccd_ik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/ik/ccd_ik.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/kpts/kp2d_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/kpts/kp2d_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/matrix.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/net_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/net_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/preproc/__init__.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/slam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/preproc/slam.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/preproc/tracker.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/vitfeat_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/preproc/vitfeat_extractor.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/vitpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/preproc/vitpose.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/vitpose_pytorch/src/vitpose_infer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/vitpose_pytorch/src/vitpose_infer/builder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/vitpose_pytorch/src/vitpose_infer/builder/configs/coco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/hmr4d/utils/preproc/vitpose_pytorch/src/vitpose_infer/pose_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/hmr4d/utils/pylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/pylogger.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/seq_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/seq_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/smplx_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/smplx_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/video_io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/video_io_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/vis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/vis/README.md -------------------------------------------------------------------------------- /imports/hmr4d/utils/vis/cv2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/vis/cv2_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/vis/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/vis/renderer.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/vis/renderer_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/vis/renderer_tools.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/vis/renderer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/vis/renderer_utils.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/vis/rich_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/vis/rich_logger.py -------------------------------------------------------------------------------- /imports/hmr4d/utils/wis3d_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/hmr4d/utils/wis3d_utils.py -------------------------------------------------------------------------------- /imports/mdm/checkpoints/t2m/Comp_v6_KLD01/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/checkpoints/t2m/Comp_v6_KLD01/opt.txt -------------------------------------------------------------------------------- /imports/mdm/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/mdm/common/quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/common/quaternion.py -------------------------------------------------------------------------------- /imports/mdm/common/skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/common/skeleton.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/a2m/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/a2m/dataset.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/a2m/humanact12poses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/a2m/humanact12poses.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/a2m/uestc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/a2m/uestc.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/get_data.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/README.md -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/common/quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/common/quaternion.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/common/skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/common/skeleton.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/motion_loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/networks/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/networks/modules.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/networks/trainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/networks/trainers.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/utils/get_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/utils/get_opt.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/utils/metrics.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/utils/paramUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/utils/paramUtil.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/utils/plot_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/utils/plot_script.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml/utils/utils.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/humanml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/humanml_utils.py -------------------------------------------------------------------------------- /imports/mdm/data_loaders/tensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/data_loaders/tensors.py -------------------------------------------------------------------------------- /imports/mdm/dataset/humanml_opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/dataset/humanml_opt.txt -------------------------------------------------------------------------------- /imports/mdm/dataset/kit_opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/dataset/kit_opt.txt -------------------------------------------------------------------------------- /imports/mdm/diffusion/fp16_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/diffusion/fp16_util.py -------------------------------------------------------------------------------- /imports/mdm/diffusion/gaussian_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/diffusion/gaussian_diffusion.py -------------------------------------------------------------------------------- /imports/mdm/diffusion/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/diffusion/logger.py -------------------------------------------------------------------------------- /imports/mdm/diffusion/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/diffusion/losses.py -------------------------------------------------------------------------------- /imports/mdm/diffusion/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/diffusion/nn.py -------------------------------------------------------------------------------- /imports/mdm/diffusion/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/diffusion/resample.py -------------------------------------------------------------------------------- /imports/mdm/diffusion/respace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/diffusion/respace.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/action2motion/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/action2motion/accuracy.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/action2motion/diversity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/action2motion/diversity.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/action2motion/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/action2motion/evaluate.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/action2motion/fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/action2motion/fid.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/action2motion/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/action2motion/models.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/gru_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/gru_eval.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/recognition/models/stgcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/recognition/models/stgcn.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/stgcn/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/stgcn/accuracy.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/stgcn/diversity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/stgcn/diversity.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/stgcn/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/stgcn/evaluate.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/stgcn/fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/stgcn/fid.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/stgcn_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/stgcn_eval.py -------------------------------------------------------------------------------- /imports/mdm/eval/a2m/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/a2m/tools.py -------------------------------------------------------------------------------- /imports/mdm/eval/eval_humanact12_uestc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/eval_humanact12_uestc.py -------------------------------------------------------------------------------- /imports/mdm/eval/eval_humanml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/eval_humanml.py -------------------------------------------------------------------------------- /imports/mdm/eval/unconstrained/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/unconstrained/evaluate.py -------------------------------------------------------------------------------- /imports/mdm/eval/unconstrained/metrics/kid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/unconstrained/metrics/kid.py -------------------------------------------------------------------------------- /imports/mdm/eval/unconstrained/models/stgcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/eval/unconstrained/models/stgcn.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/__init__.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/body_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/body_model/__init__.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/body_model/body_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/body_model/body_model.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/body_model/lbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/body_model/lbs.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/models/__init__.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/models/ik_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/models/ik_engine.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/models/vposer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/models/vposer_model.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/tools/__init__.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/tools/configurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/tools/configurations.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/tools/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/tools/model_loader.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/tools/omni_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/tools/omni_tools.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/tools/rotation_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/tools/rotation_tools.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/tools/tgm_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/tools/tgm_conversion.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/train/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/train/README.md -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/train/V02_05/V02_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/train/V02_05/V02_05.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/train/V02_05/V02_05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/train/V02_05/V02_05.yaml -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/train/V02_05/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/train/V02_05/__init__.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/train/__init__.py -------------------------------------------------------------------------------- /imports/mdm/human_body_prior/train/vposer_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/human_body_prior/train/vposer_trainer.py -------------------------------------------------------------------------------- /imports/mdm/model/cfg_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/model/cfg_sampler.py -------------------------------------------------------------------------------- /imports/mdm/model/mdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/model/mdm.py -------------------------------------------------------------------------------- /imports/mdm/model/rotation2xyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/model/rotation2xyz.py -------------------------------------------------------------------------------- /imports/mdm/model/smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/model/smpl.py -------------------------------------------------------------------------------- /imports/mdm/paramUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/paramUtil.py -------------------------------------------------------------------------------- /imports/mdm/prepare/download_a2m_datasets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/prepare/download_a2m_datasets.sh -------------------------------------------------------------------------------- /imports/mdm/prepare/download_glove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/prepare/download_glove.sh -------------------------------------------------------------------------------- /imports/mdm/prepare/download_recognition_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/prepare/download_recognition_models.sh -------------------------------------------------------------------------------- /imports/mdm/prepare/download_smpl_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/prepare/download_smpl_files.sh -------------------------------------------------------------------------------- /imports/mdm/prepare/download_t2m_evaluators.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/prepare/download_t2m_evaluators.sh -------------------------------------------------------------------------------- /imports/mdm/prepare/download_unconstrained_datasets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/prepare/download_unconstrained_datasets.sh -------------------------------------------------------------------------------- /imports/mdm/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imports/mdm/train/train_mdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/train/train_mdm.py -------------------------------------------------------------------------------- /imports/mdm/train/train_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/train/train_platforms.py -------------------------------------------------------------------------------- /imports/mdm/train/training_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/train/training_loop.py -------------------------------------------------------------------------------- /imports/mdm/utils/PYTORCH3D_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/utils/PYTORCH3D_LICENSE -------------------------------------------------------------------------------- /imports/mdm/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/utils/config.py -------------------------------------------------------------------------------- /imports/mdm/utils/dist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/utils/dist_util.py -------------------------------------------------------------------------------- /imports/mdm/utils/fixseed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/utils/fixseed.py -------------------------------------------------------------------------------- /imports/mdm/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/utils/misc.py -------------------------------------------------------------------------------- /imports/mdm/utils/model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/utils/model_util.py -------------------------------------------------------------------------------- /imports/mdm/utils/parser_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/utils/parser_util.py -------------------------------------------------------------------------------- /imports/mdm/utils/rotation_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/utils/rotation_conversions.py -------------------------------------------------------------------------------- /imports/mdm/visualize/joints2smpl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/joints2smpl/README.md -------------------------------------------------------------------------------- /imports/mdm/visualize/joints2smpl/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/joints2smpl/environment.yaml -------------------------------------------------------------------------------- /imports/mdm/visualize/joints2smpl/fit_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/joints2smpl/fit_seq.py -------------------------------------------------------------------------------- /imports/mdm/visualize/joints2smpl/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/joints2smpl/src/config.py -------------------------------------------------------------------------------- /imports/mdm/visualize/joints2smpl/src/customloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/joints2smpl/src/customloss.py -------------------------------------------------------------------------------- /imports/mdm/visualize/joints2smpl/src/prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/joints2smpl/src/prior.py -------------------------------------------------------------------------------- /imports/mdm/visualize/joints2smpl/src/smplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/joints2smpl/src/smplify.py -------------------------------------------------------------------------------- /imports/mdm/visualize/motions2hik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/motions2hik.py -------------------------------------------------------------------------------- /imports/mdm/visualize/render_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/render_mesh.py -------------------------------------------------------------------------------- /imports/mdm/visualize/simplify_loc2rot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/simplify_loc2rot.py -------------------------------------------------------------------------------- /imports/mdm/visualize/vis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/mdm/visualize/vis_utils.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /imports/ml-depth-pro/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /imports/ml-depth-pro/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/CONTRIBUTING.md -------------------------------------------------------------------------------- /imports/ml-depth-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/LICENSE -------------------------------------------------------------------------------- /imports/ml-depth-pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/README.md -------------------------------------------------------------------------------- /imports/ml-depth-pro/get_pretrained_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/get_pretrained_models.sh -------------------------------------------------------------------------------- /imports/ml-depth-pro/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/pyproject.toml -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/__init__.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/cli/__init__.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/cli/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/cli/run.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/depth_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/depth_pro.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/network/__init__.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/network/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/network/decoder.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/network/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/network/encoder.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/network/fov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/network/fov.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/network/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/network/vit.py -------------------------------------------------------------------------------- /imports/ml-depth-pro/src/depth_pro/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/imports/ml-depth-pro/src/depth_pro/utils.py -------------------------------------------------------------------------------- /scripts/generate_2d_hoi_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/generate_2d_hoi_images.sh -------------------------------------------------------------------------------- /scripts/generate_4d_hoi_samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/generate_4d_hoi_samples.sh -------------------------------------------------------------------------------- /scripts/generate_human_motion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/generate_human_motion.sh -------------------------------------------------------------------------------- /scripts/generate_human_motion_rebuttal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/generate_human_motion_rebuttal.sh -------------------------------------------------------------------------------- /scripts/generate_object_motion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/generate_object_motion.sh -------------------------------------------------------------------------------- /scripts/train_lora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/train_lora.sh -------------------------------------------------------------------------------- /scripts/train_omdm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/train_omdm.sh -------------------------------------------------------------------------------- /scripts/videos/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/videos/get.sh -------------------------------------------------------------------------------- /scripts/videos/post_i2v.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/scripts/videos/post_i2v.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/setup.py -------------------------------------------------------------------------------- /src/david/inference_mdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/david/inference_mdm.py -------------------------------------------------------------------------------- /src/david/inference_omdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/david/inference_omdm.py -------------------------------------------------------------------------------- /src/david/joint2smplx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/david/joint2smplx.py -------------------------------------------------------------------------------- /src/david/process_mdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/david/process_mdm.py -------------------------------------------------------------------------------- /src/david/process_omdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/david/process_omdm.py -------------------------------------------------------------------------------- /src/david/train_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/david/train_lora.py -------------------------------------------------------------------------------- /src/david/train_omdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/david/train_omdm.py -------------------------------------------------------------------------------- /src/generation/estimate_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/estimate_depth.py -------------------------------------------------------------------------------- /src/generation/extract_canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/extract_canny.py -------------------------------------------------------------------------------- /src/generation/generate_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/generate_images.py -------------------------------------------------------------------------------- /src/generation/generate_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/generate_videos.py -------------------------------------------------------------------------------- /src/generation/optimize_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/optimize_depth.py -------------------------------------------------------------------------------- /src/generation/pnp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/pnp.py -------------------------------------------------------------------------------- /src/generation/predict_human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/predict_human.py -------------------------------------------------------------------------------- /src/generation/prepare_4dhoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/prepare_4dhoi.py -------------------------------------------------------------------------------- /src/generation/preprocess_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/preprocess_videos.py -------------------------------------------------------------------------------- /src/generation/raycast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/raycast.py -------------------------------------------------------------------------------- /src/generation/render_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/render_objects.py -------------------------------------------------------------------------------- /src/generation/resize_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/resize_videos.py -------------------------------------------------------------------------------- /src/generation/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/generation/track.py -------------------------------------------------------------------------------- /src/visualization/visualize_4d_hoi_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/visualization/visualize_4d_hoi_sample.py -------------------------------------------------------------------------------- /src/visualization/visualize_david_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/visualization/visualize_david_output.py -------------------------------------------------------------------------------- /src/visualization/visualize_estimated_OMOMO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/src/visualization/visualize_estimated_OMOMO.py -------------------------------------------------------------------------------- /utils/blenderproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/utils/blenderproc.py -------------------------------------------------------------------------------- /utils/coap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/utils/coap/__init__.py -------------------------------------------------------------------------------- /utils/coap/coap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/utils/coap/coap.py -------------------------------------------------------------------------------- /utils/coap/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/utils/coap/modules.py -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/pipeline_flux_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/utils/pipeline_flux_controlnet.py -------------------------------------------------------------------------------- /utils/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/utils/transformations.py -------------------------------------------------------------------------------- /utils/videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snuvclab/david/HEAD/utils/videos.py --------------------------------------------------------------------------------