ntgcalls 2.0.6__tar.gz → 2.0.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ntgcalls-2.0.9/CMakeLists.txt +47 -0
- ntgcalls-2.0.9/PKG-INFO +172 -0
- ntgcalls-2.0.9/cmake/Android.cmake +21 -0
- ntgcalls-2.0.9/cmake/FindBoost.cmake +116 -0
- ntgcalls-2.0.9/cmake/FindClang.cmake +107 -0
- ntgcalls-2.0.9/cmake/FindFFmpeg.cmake +130 -0
- ntgcalls-2.0.9/cmake/FindLibCXX.cmake +31 -0
- ntgcalls-2.0.9/cmake/FindMesa.cmake +42 -0
- ntgcalls-2.0.9/cmake/FindVisualStudio.cmake +39 -0
- ntgcalls-2.0.9/cmake/FindWebRTC.cmake +116 -0
- ntgcalls-2.0.9/cmake/GitUtils.cmake +89 -0
- ntgcalls-2.0.9/cmake/PythonUtils.cmake +43 -0
- ntgcalls-2.0.9/cmake/Toolchain.cmake +42 -0
- ntgcalls-2.0.9/cmake/macOS.cmake +35 -0
- ntgcalls-2.0.9/deps/pybind11/.clang-tidy +80 -0
- ntgcalls-2.0.9/deps/pybind11/.codespell-ignore-lines +35 -0
- ntgcalls-2.0.9/deps/pybind11/.github/CONTRIBUTING.md +349 -0
- ntgcalls-2.0.9/deps/pybind11/.github/labeler.yml +13 -0
- ntgcalls-2.0.9/deps/pybind11/.github/labeler_merged.yml +8 -0
- ntgcalls-2.0.9/deps/pybind11/.github/pull_request_template.md +15 -0
- ntgcalls-2.0.9/deps/pybind11/.github/workflows/ci.yml +1279 -0
- ntgcalls-2.0.9/deps/pybind11/.github/workflows/configure.yml +85 -0
- ntgcalls-2.0.9/deps/pybind11/.github/workflows/docs-link.yml +41 -0
- ntgcalls-2.0.9/deps/pybind11/.github/workflows/format.yml +54 -0
- ntgcalls-2.0.9/deps/pybind11/.github/workflows/nightlies.yml +59 -0
- ntgcalls-2.0.9/deps/pybind11/.github/workflows/pip.yml +118 -0
- ntgcalls-2.0.9/deps/pybind11/.github/workflows/reusable-standard.yml +96 -0
- ntgcalls-2.0.9/deps/pybind11/.github/workflows/tests-cibw.yml +47 -0
- ntgcalls-2.0.9/deps/pybind11/.gitignore +53 -0
- ntgcalls-2.0.9/deps/pybind11/.pre-commit-config.yaml +149 -0
- ntgcalls-2.0.9/deps/pybind11/CMakeLists.txt +423 -0
- ntgcalls-2.0.9/deps/pybind11/CMakePresets.json +93 -0
- ntgcalls-2.0.9/deps/pybind11/README.rst +216 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/cast/custom.rst +137 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/cast/overview.rst +170 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/cast/stl.rst +249 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/classes.rst +1408 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/deadlock.md +391 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/deprecated.rst +179 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/embedding.rst +495 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/exceptions.rst +422 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/functions.rst +616 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/misc.rst +615 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/pycpp/numpy.rst +493 -0
- ntgcalls-2.0.9/deps/pybind11/docs/advanced/smart_ptrs.rst +179 -0
- ntgcalls-2.0.9/deps/pybind11/docs/basics.rst +314 -0
- ntgcalls-2.0.9/deps/pybind11/docs/benchmark.py +89 -0
- ntgcalls-2.0.9/deps/pybind11/docs/changelog.md +3148 -0
- ntgcalls-2.0.9/deps/pybind11/docs/classes.rst +652 -0
- ntgcalls-2.0.9/deps/pybind11/docs/compiling.rst +728 -0
- ntgcalls-2.0.9/deps/pybind11/docs/conf.py +369 -0
- ntgcalls-2.0.9/deps/pybind11/docs/faq.rst +352 -0
- ntgcalls-2.0.9/deps/pybind11/docs/index.rst +49 -0
- ntgcalls-2.0.9/deps/pybind11/docs/reference.rst +130 -0
- ntgcalls-2.0.9/deps/pybind11/docs/release.rst +133 -0
- ntgcalls-2.0.9/deps/pybind11/docs/requirements.in +7 -0
- ntgcalls-2.0.9/deps/pybind11/docs/requirements.txt +91 -0
- ntgcalls-2.0.9/deps/pybind11/docs/upgrade.rst +746 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/attr.h +722 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/cast.h +2356 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/chrono.h +228 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/conduit/README.txt +15 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +116 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +87 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/critical_section.h +56 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/class.h +823 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/common.h +1310 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/cpp_conduit.h +75 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/descr.h +226 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +39 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/function_record_pyobject.h +208 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/init.h +538 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/internals.h +786 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/native_enum_data.h +209 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +82 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/struct_smart_holder.h +378 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/type_caster_base.h +1591 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/using_smart_holder.h +22 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/detail/value_and_holder.h +90 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/eigen/matrix.h +723 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/eigen/tensor.h +521 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/embed.h +320 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/eval.h +161 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/functional.h +147 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/gil.h +199 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/gil_safe_call_once.h +102 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/gil_simple.h +37 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/native_enum.h +67 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/numpy.h +2312 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/pybind11.h +3584 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/pytypes.h +2680 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/stl/filesystem.h +114 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/stl.h +666 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/stl_bind.h +858 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/subinterpreter.h +305 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/trampoline_self_life_support.h +65 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/typing.h +298 -0
- ntgcalls-2.0.9/deps/pybind11/include/pybind11/warnings.h +75 -0
- ntgcalls-2.0.9/deps/pybind11/noxfile.py +151 -0
- ntgcalls-2.0.9/deps/pybind11/pybind11/__init__.py +19 -0
- ntgcalls-2.0.9/deps/pybind11/pybind11/__main__.py +97 -0
- ntgcalls-2.0.9/deps/pybind11/pybind11/_version.py +34 -0
- ntgcalls-2.0.9/deps/pybind11/pybind11/setup_helpers.py +500 -0
- ntgcalls-2.0.9/deps/pybind11/pyproject.toml +183 -0
- ntgcalls-2.0.9/deps/pybind11/tests/CMakeLists.txt +657 -0
- ntgcalls-2.0.9/deps/pybind11/tests/conftest.py +269 -0
- ntgcalls-2.0.9/deps/pybind11/tests/constructor_stats.h +330 -0
- ntgcalls-2.0.9/deps/pybind11/tests/custom_exceptions.py +10 -0
- ntgcalls-2.0.9/deps/pybind11/tests/env.py +36 -0
- ntgcalls-2.0.9/deps/pybind11/tests/exo_planet_c_api.cpp +76 -0
- ntgcalls-2.0.9/deps/pybind11/tests/extra_python_package/test_files.py +383 -0
- ntgcalls-2.0.9/deps/pybind11/tests/mod_per_interpreter_gil.cpp +20 -0
- ntgcalls-2.0.9/deps/pybind11/tests/mod_shared_interpreter_gil.cpp +17 -0
- ntgcalls-2.0.9/deps/pybind11/tests/pure_cpp/CMakeLists.txt +20 -0
- ntgcalls-2.0.9/deps/pybind11/tests/pure_cpp/smart_holder_poc.h +56 -0
- ntgcalls-2.0.9/deps/pybind11/tests/pure_cpp/smart_holder_poc_test.cpp +427 -0
- ntgcalls-2.0.9/deps/pybind11/tests/pybind11_tests.cpp +129 -0
- ntgcalls-2.0.9/deps/pybind11/tests/pybind11_tests.h +119 -0
- ntgcalls-2.0.9/deps/pybind11/tests/pyproject.toml +35 -0
- ntgcalls-2.0.9/deps/pybind11/tests/pytest.ini +22 -0
- ntgcalls-2.0.9/deps/pybind11/tests/requirements.txt +18 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_buffers.cpp +442 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_buffers.py +401 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_builtin_casters.cpp +391 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_builtin_casters.py +551 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_call_policies.cpp +113 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_call_policies.py +256 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_callbacks.cpp +308 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_callbacks.py +247 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class.cpp +681 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class.py +557 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.cpp +53 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.py +21 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_basic.cpp +248 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_basic.py +246 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_disowning.cpp +41 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_disowning.py +78 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_disowning_mi.cpp +85 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_disowning_mi.py +246 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_factory_constructors.cpp +156 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_factory_constructors.py +53 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_inheritance.cpp +90 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_inheritance.py +63 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_mi_thunks.cpp +93 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_mi_thunks.py +53 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_property.cpp +94 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_property.py +166 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_property_non_owning.cpp +63 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_property_non_owning.py +30 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_shared_ptr_copy_move.cpp +103 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_shared_ptr_copy_move.py +41 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_basic.cpp +57 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_basic.py +35 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_self_life_support.cpp +86 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_self_life_support.py +38 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_shared_from_this.cpp +137 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_shared_from_this.py +247 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.cpp +92 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.py +154 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_unique_ptr.cpp +63 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_trampoline_unique_ptr.py +31 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.cpp +30 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.py +8 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_unique_ptr_member.cpp +50 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_unique_ptr_member.py +26 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_virtual_py_cpp_mix.cpp +58 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_class_sh_virtual_py_cpp_mix.py +66 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cmake_build/CMakeLists.txt +91 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +19 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +29 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +37 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +38 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +32 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +38 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_copy_move.cpp +548 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_copy_move.py +144 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cpp_conduit.py +183 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +68 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cross_module_rtti/bindings.cpp +20 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cross_module_rtti/catch.cpp +22 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cross_module_rtti/lib.cpp +13 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cross_module_rtti/lib.h +30 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_cross_module_rtti/test_cross_module_rtti.cpp +50 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_custom_type_casters.py +126 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_custom_type_setup.cpp +49 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_custom_type_setup.py +50 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_docs_advanced_cast_custom.cpp +69 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_docs_advanced_cast_custom.py +40 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_docstring_options.py +72 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_eigen_matrix.cpp +447 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_eigen_matrix.py +839 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_eigen_tensor.py +316 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_embed/CMakeLists.txt +61 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_embed/external_module.cpp +24 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_embed/test_interpreter.cpp +467 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_embed/test_subinterpreter.cpp +442 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_enum.cpp +149 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_enum.py +344 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_eval.py +52 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_exceptions.cpp +427 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_exceptions.py +439 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_factory_constructors.py +531 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_gil_scoped.py +285 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_kwargs_and_defaults.cpp +331 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_kwargs_and_defaults.py +471 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_local_bindings.py +257 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_methods_and_attributes.cpp +492 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_methods_and_attributes.py +568 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_modules.cpp +124 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_modules.py +129 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_multiple_inheritance.py +500 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_multiple_interpreters.py +200 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_native_enum.cpp +249 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_native_enum.py +317 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_numpy_array.cpp +598 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_numpy_array.py +710 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_numpy_dtypes.cpp +745 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_numpy_dtypes.py +464 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_numpy_scalars.cpp +63 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_numpy_scalars.py +54 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_numpy_vectorize.py +268 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_opaque_types.cpp +77 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_opaque_types.py +64 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_operator_overloading.py +161 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_pickling.cpp +191 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_pickling.py +149 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_potentially_slicing_weak_ptr.cpp +168 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_potentially_slicing_weak_ptr.py +174 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_pytypes.cpp +1213 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_pytypes.py +1349 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_scoped_critical_section.cpp +275 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_scoped_critical_section.py +30 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_sequences_and_iterators.py +307 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_smart_ptr.cpp +587 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_smart_ptr.py +357 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_stl.cpp +666 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_stl.py +735 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_stl_binders.py +414 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_thread.cpp +72 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_thread.py +68 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_type_caster_pyobject_ptr.cpp +168 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_type_caster_pyobject_ptr.py +124 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_unnamed_namespace_a.cpp +37 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_unnamed_namespace_a.py +30 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_virtual_functions.py +468 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_warnings.cpp +46 -0
- ntgcalls-2.0.9/deps/pybind11/tests/test_warnings.py +68 -0
- ntgcalls-2.0.9/deps/pybind11/tools/FindPythonLibsNew.cmake +320 -0
- ntgcalls-2.0.9/deps/pybind11/tools/make_changelog.py +115 -0
- ntgcalls-2.0.9/deps/pybind11/tools/make_global.py +33 -0
- ntgcalls-2.0.9/deps/pybind11/tools/pybind11Common.cmake +442 -0
- ntgcalls-2.0.9/deps/pybind11/tools/pybind11Config.cmake.in +240 -0
- ntgcalls-2.0.9/deps/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
- ntgcalls-2.0.9/deps/pybind11/tools/pybind11NewTools.cmake +353 -0
- ntgcalls-2.0.9/deps/pybind11/tools/pybind11Tools.cmake +217 -0
- ntgcalls-2.0.9/deps/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
- ntgcalls-2.0.9/include/ntgcalls.h +381 -0
- ntgcalls-2.0.9/ntgcalls/CMakeLists.txt +76 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/devices/base_device_module.hpp +26 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/devices/camera_capturer_module.hpp +42 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/devices/desktop_capturer_module.hpp +42 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/devices/java_video_capturer_module.hpp +40 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/instances/group_call.hpp +52 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/instances/p2p_call.hpp +58 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/models/media_description.hpp +77 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/signaling/messages/message.hpp +36 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/signaling/signaling_packet_transport.hpp +70 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/signaling/signaling_sctp_connection.hpp +53 -0
- ntgcalls-2.0.9/ntgcalls/include/ntgcalls/stream_manager.hpp +168 -0
- ntgcalls-2.0.9/ntgcalls/src/bindings/ntgcalls.cpp +889 -0
- ntgcalls-2.0.9/ntgcalls/src/bindings/pythonapi.cpp +294 -0
- ntgcalls-2.0.9/ntgcalls/src/devices/camera_capturer_module.cpp +138 -0
- ntgcalls-2.0.9/ntgcalls/src/devices/desktop_capturer_module.cpp +145 -0
- ntgcalls-2.0.9/ntgcalls/src/devices/java_audio_device_module.cpp +102 -0
- ntgcalls-2.0.9/ntgcalls/src/devices/java_video_capturer_module.cpp +161 -0
- ntgcalls-2.0.9/ntgcalls/src/instances/group_call.cpp +244 -0
- ntgcalls-2.0.9/ntgcalls/src/media/audio_sink.cpp +37 -0
- ntgcalls-2.0.9/ntgcalls/src/media/video_sink.cpp +43 -0
- ntgcalls-2.0.9/ntgcalls/src/ntgcalls.cpp +409 -0
- ntgcalls-2.0.9/ntgcalls/src/signaling/messages/candidates_message.cpp +30 -0
- ntgcalls-2.0.9/ntgcalls/src/signaling/messages/initial_setup_message.cpp +42 -0
- ntgcalls-2.0.9/ntgcalls/src/signaling/messages/media_state_message.cpp +55 -0
- ntgcalls-2.0.9/ntgcalls/src/signaling/messages/negotiate_channels_message.cpp +235 -0
- ntgcalls-2.0.9/ntgcalls/src/signaling/signaling_packet_transport.cpp +116 -0
- ntgcalls-2.0.9/ntgcalls/src/stream_manager.cpp +564 -0
- ntgcalls-2.0.9/ntgcalls.egg-info/PKG-INFO +172 -0
- ntgcalls-2.0.9/ntgcalls.egg-info/SOURCES.txt +696 -0
- ntgcalls-2.0.9/pyproject.toml +42 -0
- ntgcalls-2.0.9/setup.py +182 -0
- ntgcalls-2.0.9/version.properties +14 -0
- ntgcalls-2.0.9/wrtc/CMakeLists.txt +23 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/group_connection.hpp +106 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/media/audio_device_module.hpp +155 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/media/channel_manager.hpp +46 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/media/channels/incoming_audio_channel.hpp +41 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/media/channels/outgoing_audio_channel.hpp +41 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/media/channels/outgoing_video_channel.hpp +40 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/media/remote_audio_sink.hpp +35 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/media/rtc_audio_source.hpp +29 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/media/rtc_video_source.hpp +28 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/native_connection.hpp +88 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/native_network_interface.hpp +136 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/network_interface.hpp +78 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/peer_connection/peer_connection_factory.hpp +62 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/peer_connection/peer_connection_factory_with_context.hpp +45 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/reflector_port.hpp +156 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/interfaces/sctp_data_channel_provider_interface_impl.hpp +78 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/models/content_negotiation_context.hpp +98 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/models/media_content.hpp +134 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/models/response_payload.hpp +32 -0
- ntgcalls-2.0.9/wrtc/include/wrtc/utils/json.hpp +415 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/group_connection.cpp +545 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/media/audio_device_module.cpp +330 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/media/channel_manager.cpp +133 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/native_connection.cpp +436 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/native_network_interface.cpp +617 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/network_interface.cpp +81 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/peer_connection/peer_connection_factory.cpp +158 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/peer_connection/peer_connection_factory_with_context.cpp +75 -0
- ntgcalls-2.0.9/wrtc/src/interfaces/reflector_port.cpp +679 -0
- ntgcalls-2.0.9/wrtc/src/models/content_negotiation_context.cpp +636 -0
- ntgcalls-2.0.9/wrtc/src/models/response_payload.cpp +131 -0
- ntgcalls-2.0.9/wrtc/src/utils/java_context.cpp +20 -0
- ntgcalls-2.0.9/wrtc/src/utils/json.cpp +51 -0
- ntgcalls-2.0.9/wrtc/src/video_factory/hardware/android/video_factory.cpp +44 -0
- ntgcalls-2.0.6/CMakeLists.txt +0 -48
- ntgcalls-2.0.6/PKG-INFO +0 -172
- ntgcalls-2.0.6/cmake/Android.cmake +0 -16
- ntgcalls-2.0.6/cmake/FindBoost.cmake +0 -95
- ntgcalls-2.0.6/cmake/FindClang.cmake +0 -100
- ntgcalls-2.0.6/cmake/FindFFmpeg.cmake +0 -132
- ntgcalls-2.0.6/cmake/FindLibCXX.cmake +0 -28
- ntgcalls-2.0.6/cmake/FindMesa.cmake +0 -42
- ntgcalls-2.0.6/cmake/FindVisualStudio.cmake +0 -37
- ntgcalls-2.0.6/cmake/FindWebRTC.cmake +0 -120
- ntgcalls-2.0.6/cmake/GitUtils.cmake +0 -89
- ntgcalls-2.0.6/cmake/PythonUtils.cmake +0 -43
- ntgcalls-2.0.6/cmake/Toolchain.cmake +0 -42
- ntgcalls-2.0.6/cmake/macOS.cmake +0 -28
- ntgcalls-2.0.6/deps/json/.cirrus.yml +0 -17
- ntgcalls-2.0.6/deps/json/.clang-tidy +0 -76
- ntgcalls-2.0.6/deps/json/.git +0 -1
- ntgcalls-2.0.6/deps/json/.github/CODEOWNERS +0 -6
- ntgcalls-2.0.6/deps/json/.github/CODE_OF_CONDUCT.md +0 -132
- ntgcalls-2.0.6/deps/json/.github/CONTRIBUTING.md +0 -222
- ntgcalls-2.0.6/deps/json/.github/FUNDING.yml +0 -2
- ntgcalls-2.0.6/deps/json/.github/ISSUE_TEMPLATE/bug.yaml +0 -93
- ntgcalls-2.0.6/deps/json/.github/ISSUE_TEMPLATE/config.yml +0 -5
- ntgcalls-2.0.6/deps/json/.github/PULL_REQUEST_TEMPLATE.md +0 -9
- ntgcalls-2.0.6/deps/json/.github/SECURITY.md +0 -25
- ntgcalls-2.0.6/deps/json/.github/config.yml +0 -22
- ntgcalls-2.0.6/deps/json/.github/dependabot.yml +0 -31
- ntgcalls-2.0.6/deps/json/.github/external_ci/appveyor.yml +0 -91
- ntgcalls-2.0.6/deps/json/.github/labeler.yml +0 -38
- ntgcalls-2.0.6/deps/json/.github/workflows/check_amalgamation.yml +0 -76
- ntgcalls-2.0.6/deps/json/.github/workflows/cifuzz.yml +0 -35
- ntgcalls-2.0.6/deps/json/.github/workflows/codeql-analysis.yml +0 -49
- ntgcalls-2.0.6/deps/json/.github/workflows/comment_check_amalgamation.yml +0 -81
- ntgcalls-2.0.6/deps/json/.github/workflows/dependency-review.yml +0 -27
- ntgcalls-2.0.6/deps/json/.github/workflows/labeler.yml +0 -26
- ntgcalls-2.0.6/deps/json/.github/workflows/macos.yml +0 -120
- ntgcalls-2.0.6/deps/json/.github/workflows/publish_documentation.yml +0 -46
- ntgcalls-2.0.6/deps/json/.github/workflows/scorecards.yml +0 -81
- ntgcalls-2.0.6/deps/json/.github/workflows/stale.yml +0 -34
- ntgcalls-2.0.6/deps/json/.github/workflows/ubuntu.yml +0 -251
- ntgcalls-2.0.6/deps/json/.github/workflows/windows.yml +0 -134
- ntgcalls-2.0.6/deps/json/.gitignore +0 -47
- ntgcalls-2.0.6/deps/json/.reuse/dep5 +0 -36
- ntgcalls-2.0.6/deps/json/.reuse/templates/json.jinja2 +0 -11
- ntgcalls-2.0.6/deps/json/.reuse/templates/json_support.jinja2 +0 -11
- ntgcalls-2.0.6/deps/json/BUILD.bazel +0 -80
- ntgcalls-2.0.6/deps/json/CITATION.cff +0 -14
- ntgcalls-2.0.6/deps/json/CMakeLists.txt +0 -225
- ntgcalls-2.0.6/deps/json/ChangeLog.md +0 -3272
- ntgcalls-2.0.6/deps/json/FILES.md +0 -239
- ntgcalls-2.0.6/deps/json/LICENSE.MIT +0 -21
- ntgcalls-2.0.6/deps/json/LICENSES/Apache-2.0.txt +0 -73
- ntgcalls-2.0.6/deps/json/LICENSES/BSD-3-Clause.txt +0 -11
- ntgcalls-2.0.6/deps/json/LICENSES/GPL-3.0-only.txt +0 -232
- ntgcalls-2.0.6/deps/json/LICENSES/MIT.txt +0 -9
- ntgcalls-2.0.6/deps/json/MODULE.bazel +0 -7
- ntgcalls-2.0.6/deps/json/Makefile +0 -266
- ntgcalls-2.0.6/deps/json/Package.swift +0 -22
- ntgcalls-2.0.6/deps/json/README.md +0 -1828
- ntgcalls-2.0.6/deps/json/cmake/ci.cmake +0 -700
- ntgcalls-2.0.6/deps/json/cmake/clang_flags.cmake +0 -20
- ntgcalls-2.0.6/deps/json/cmake/config.cmake.in +0 -15
- ntgcalls-2.0.6/deps/json/cmake/download_test_data.cmake +0 -56
- ntgcalls-2.0.6/deps/json/cmake/gcc_flags.cmake +0 -348
- ntgcalls-2.0.6/deps/json/cmake/nlohmann_jsonConfigVersion.cmake.in +0 -20
- ntgcalls-2.0.6/deps/json/cmake/pkg-config.pc.in +0 -7
- ntgcalls-2.0.6/deps/json/cmake/requirements/requirements-cppcheck.txt +0 -1
- ntgcalls-2.0.6/deps/json/cmake/requirements/requirements-cpplint.txt +0 -1
- ntgcalls-2.0.6/deps/json/cmake/requirements/requirements-reuse.txt +0 -1
- ntgcalls-2.0.6/deps/json/cmake/scripts/gen_bazel_build_file.cmake +0 -24
- ntgcalls-2.0.6/deps/json/cmake/test.cmake +0 -273
- ntgcalls-2.0.6/deps/json/docs/Makefile +0 -44
- ntgcalls-2.0.6/deps/json/docs/README.md +0 -20
- ntgcalls-2.0.6/deps/json/docs/avatars.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/docset/Info.plist +0 -20
- ntgcalls-2.0.6/deps/json/docs/docset/Makefile +0 -88
- ntgcalls-2.0.6/deps/json/docs/docset/README.md +0 -19
- ntgcalls-2.0.6/deps/json/docs/docset/docSet.sql +0 -244
- ntgcalls-2.0.6/deps/json/docs/docset/docset.json +0 -10
- ntgcalls-2.0.6/deps/json/docs/docset/icon.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/docset/icon@2x.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/Makefile +0 -45
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/adl_serializer/from_json.md +0 -73
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/adl_serializer/index.md +0 -35
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/adl_serializer/to_json.md +0 -43
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/accept.md +0 -113
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/array.md +0 -60
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/array_t.md +0 -68
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/at.md +0 -226
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/back.md +0 -65
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/basic_json.md +0 -402
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/begin.md +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/binary.md +0 -66
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/binary_t.md +0 -89
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/boolean_t.md +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/cbegin.md +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/cbor_tag_handler_t.md +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/cend.md +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/clear.md +0 -58
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/contains.md +0 -118
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/count.md +0 -78
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/crbegin.md +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/crend.md +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/default_object_comparator_t.md +0 -35
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/diff.md +0 -62
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/dump.md +0 -79
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/emplace.md +0 -61
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/emplace_back.md +0 -65
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/empty.md +0 -66
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/end.md +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/end_pos.md +0 -68
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/erase.md +0 -211
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/error_handler_t.md +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/exception.md +0 -87
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/find.md +0 -86
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/flatten.md +0 -50
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/from_bjdata.md +0 -93
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/from_bson.md +0 -110
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/from_cbor.md +0 -117
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/from_msgpack.md +0 -109
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/from_ubjson.md +0 -106
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/front.md +0 -58
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/get.md +0 -136
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/get_allocator.md +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/get_binary.md +0 -45
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/get_ptr.md +0 -94
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/get_ref.md +0 -68
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/get_to.md +0 -58
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/index.md +0 -336
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/input_format_t.md +0 -52
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/insert.md +0 -190
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/invalid_iterator.md +0 -77
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_array.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_binary.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_boolean.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_discarded.md +0 -72
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_null.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_number.md +0 -56
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_number_float.md +0 -46
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_number_integer.md +0 -47
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_number_unsigned.md +0 -46
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_object.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_primitive.md +0 -69
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_string.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/is_structured.md +0 -63
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/items.md +0 -100
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/json_base_class_t.md +0 -45
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/json_serializer.md +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/max_size.md +0 -60
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/merge_patch.md +0 -63
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/meta.md +0 -56
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/number_float_t.md +0 -70
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/number_integer_t.md +0 -76
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/number_unsigned_t.md +0 -76
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/object.md +0 -63
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/object_comparator_t.md +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/object_t.md +0 -114
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator+=.md +0 -124
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator=.md +0 -43
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator[].md +0 -250
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_ValueType.md +0 -82
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_eq.md +0 -168
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_ge.md +0 -86
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_gt.md +0 -86
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_le.md +0 -87
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_lt.md +0 -96
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_ne.md +0 -98
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_spaceship.md +0 -100
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/operator_value_t.md +0 -54
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/other_error.md +0 -77
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/out_of_range.md +0 -78
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/parse.md +0 -211
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/parse_error.md +0 -86
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/parse_event_t.md +0 -29
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/parser_callback_t.md +0 -73
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/patch.md +0 -73
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/patch_inplace.md +0 -70
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/push_back.md +0 -120
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/rbegin.md +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/rend.md +0 -43
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/sax_parse.md +0 -115
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/size.md +0 -57
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/start_pos.md +0 -68
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/std_hash.md +0 -34
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/std_swap.md +0 -51
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/string_t.md +0 -66
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/swap.md +0 -157
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/to_bjdata.md +0 -78
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/to_bson.md +0 -59
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/to_cbor.md +0 -61
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/to_msgpack.md +0 -59
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/to_string.md +0 -65
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/to_ubjson.md +0 -70
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/type.md +0 -54
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/type_error.md +0 -78
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/type_name.md +0 -54
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/unflatten.md +0 -61
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/update.md +0 -147
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/value.md +0 -183
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/value_t.md +0 -81
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/basic_json/~basic_json.md +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/byte_container_with_subtype/byte_container_with_subtype.md +0 -46
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/byte_container_with_subtype/clear_subtype.md +0 -36
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/byte_container_with_subtype/has_subtype.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/byte_container_with_subtype/index.md +0 -35
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/byte_container_with_subtype/set_subtype.md +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/byte_container_with_subtype/subtype.md +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json.md +0 -28
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/back.md +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/empty.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/index.md +0 -52
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/json_pointer.md +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/operator_eq.md +0 -113
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/operator_ne.md +0 -109
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/operator_slash.md +0 -64
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/operator_slasheq.md +0 -61
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/operator_string_t.md +0 -52
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/parent_pointer.md +0 -35
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/pop_back.md +0 -35
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/push_back.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/string_t.md +0 -28
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_pointer/to_string.md +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/binary.md +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/boolean.md +0 -36
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/end_array.md +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/end_object.md +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/index.md +0 -44
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/key.md +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/null.md +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/number_float.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/number_integer.md +0 -36
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/number_unsigned.md +0 -36
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/parse_error.md +0 -44
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/start_array.md +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/start_object.md +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/json_sax/string.md +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/index.md +0 -83
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_assert.md +0 -88
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_diagnostic_positions.md +0 -119
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_diagnostics.md +0 -94
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_disable_enum_serialization.md +0 -154
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_has_cpp_11.md +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_has_filesystem.md +0 -43
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_has_ranges.md +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_has_static_rtti.md +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_has_three_way_comparison.md +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_no_io.md +0 -35
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_noexception.md +0 -45
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_skip_library_version_check.md +0 -37
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_skip_unsupported_compiler_check.md +0 -33
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_throw_user.md +0 -75
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_use_global_udls.md +0 -99
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_use_implicit_conversions.md +0 -60
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/json_use_legacy_discarded_value_comparison.md +0 -81
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/nlohmann_define_derived_type.md +0 -177
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/nlohmann_define_type_intrusive.md +0 -170
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/nlohmann_define_type_non_intrusive.md +0 -171
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace.md +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace_begin.md +0 -61
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace_no_version.md +0 -45
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/nlohmann_json_serialize_enum.md +0 -85
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/macros/nlohmann_json_version_major.md +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/operator_gtgt.md +0 -64
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/operator_literal_json.md +0 -61
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/operator_literal_json_pointer.md +0 -64
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/operator_ltlt.md +0 -87
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/ordered_json.md +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/api/ordered_map.md +0 -82
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/community/code_of_conduct.md +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/community/contribution_guidelines.md +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/community/governance.md +0 -122
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/community/index.md +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/community/quality_assurance.md +0 -210
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/community/security_policy.md +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/css/custom.css +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/README.cpp +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/README.output +0 -27
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/accept__string.cpp +0 -26
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/accept__string.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/array.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/array.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/array_t.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/array_t.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__json_pointer.cpp +0 -103
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__json_pointer.output +0 -12
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__json_pointer_const.cpp +0 -80
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__json_pointer_const.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__keytype.c++17.cpp +0 -49
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__keytype.c++17.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__keytype_const.c++17.cpp +0 -43
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__keytype_const.c++17.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__object_t_key_type.cpp +0 -47
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__object_t_key_type.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__object_t_key_type_const.cpp +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__object_t_key_type_const.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__size_type.cpp +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__size_type.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__size_type_const.cpp +0 -36
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/at__size_type_const.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/back.cpp +0 -38
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/back.output +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__CompatibleType.cpp +0 -214
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__CompatibleType.output +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__InputIt_InputIt.cpp +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__InputIt_InputIt.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__basic_json.cpp +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__basic_json.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__copyassignment.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__copyassignment.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__list_init_t.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__list_init_t.output +0 -5
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__moveconstructor.cpp +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__moveconstructor.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__nullptr_t.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__nullptr_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__size_type_basic_json.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__size_type_basic_json.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__value_t.cpp +0 -25
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/basic_json__value_t.output +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/begin.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/begin.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/binary.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/binary.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/binary_t.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/binary_t.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/boolean_t.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/boolean_t.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__byte_container_with_subtype.cpp +0 -23
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__byte_container_with_subtype.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__clear_subtype.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__clear_subtype.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__has_subtype.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__has_subtype.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__set_subtype.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__set_subtype.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__subtype.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/byte_container_with_subtype__subtype.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/cbegin.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/cbegin.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/cbor_tag_handler_t.cpp +0 -28
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/cbor_tag_handler_t.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/cend.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/cend.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/clear.cpp +0 -34
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/clear.output +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/contains__json_pointer.cpp +0 -43
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/contains__json_pointer.output +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/contains__keytype.c++17.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/contains__keytype.c++17.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/contains__object_t_key_type.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/contains__object_t_key_type.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/count__keytype.c++17.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/count__keytype.c++17.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/count__object_t_key_type.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/count__object_t_key_type.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/crbegin.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/crbegin.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/crend.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/crend.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/default_object_comparator_t.cpp +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/default_object_comparator_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostic_positions.cpp +0 -51
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostic_positions.output +0 -50
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostic_positions_exception.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostic_positions_exception.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostics_extended.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostics_extended.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostics_extended_positions.cpp +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostics_extended_positions.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostics_standard.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diagnostics_standard.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diff.cpp +0 -37
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/diff.output +0 -25
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/dump.cpp +0 -48
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/dump.output +0 -55
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/emplace.cpp +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/emplace.output +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/emplace_back.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/emplace_back.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/empty.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/empty.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/end.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/end.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__IteratorType.cpp +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__IteratorType.output +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__IteratorType_IteratorType.cpp +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__IteratorType_IteratorType.output +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__keytype.c++17.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__keytype.c++17.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__object_t_key_type.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__object_t_key_type.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__size_type.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/erase__size_type.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/error_handler_t.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/error_handler_t.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/exception.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/exception.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/find__keytype.c++17.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/find__keytype.c++17.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/find__object_t_key_type.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/find__object_t_key_type.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/flatten.cpp +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/flatten.output +0 -12
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_bjdata.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_bjdata.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_bson.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_bson.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_cbor.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_cbor.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_json__default_constructible.cpp +0 -37
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_json__default_constructible.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_json__non_default_constructible.cpp +0 -53
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_json__non_default_constructible.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_msgpack.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_msgpack.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_ubjson.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/from_ubjson.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/front.cpp +0 -29
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/front.output +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get__PointerType.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get__PointerType.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get__ValueType_const.cpp +0 -50
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get__ValueType_const.output +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_allocator.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_allocator.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_binary.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_binary.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_ptr.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_ptr.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_ref.cpp +0 -27
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_ref.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_to.cpp +0 -59
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/get_to.output +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert.cpp +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert__count.cpp +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert__count.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert__ilist.cpp +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert__ilist.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert__range.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert__range.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert__range_object.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/insert__range_object.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/invalid_iterator.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/invalid_iterator.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_array.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_array.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_binary.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_binary.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_boolean.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_boolean.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_discarded.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_discarded.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_null.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_null.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_number.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_number.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_number_float.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_number_float.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_number_integer.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_number_integer.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_number_unsigned.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_number_unsigned.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_object.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_object.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_primitive.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_primitive.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_string.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_string.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_structured.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/is_structured.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/items.cpp +0 -23
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/items.output +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_base_class_t.cpp +0 -88
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_base_class_t.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_lines.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_lines.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer.cpp +0 -47
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__back.cpp +0 -15
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__back.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__empty.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__empty.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator__equal.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator__equal.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator__equal_stringtype.cpp +0 -33
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator__equal_stringtype.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal_stringtype.cpp +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal_stringtype.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator_add.cpp +0 -23
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator_add.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator_add_binary.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator_add_binary.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator_string_t.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__operator_string_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__parent_pointer.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__parent_pointer.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__pop_back.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__pop_back.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__push_back.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__push_back.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__string_t.cpp +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__string_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__to_string.cpp +0 -34
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/json_pointer__to_string.output +0 -12
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/max_size.cpp +0 -25
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/max_size.output +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/merge_patch.cpp +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/merge_patch.output +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/meta.cpp +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/meta.output +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_derived_type_intrusive_macro.cpp +0 -37
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_derived_type_intrusive_macro.output +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_explicit.cpp +0 -62
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_explicit.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_macro.cpp +0 -48
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_macro.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_explicit.cpp +0 -39
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_explicit.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_macro.cpp +0 -33
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_macro.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_explicit.cpp +0 -57
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_explicit.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_macro.cpp +0 -42
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_macro.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_explicit.cpp +0 -55
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_explicit.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_macro.cpp +0 -41
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_macro.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_explicit.cpp +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_explicit.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_macro.cpp +0 -26
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_macro.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_explicit.cpp +0 -55
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_explicit.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_macro.cpp +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_macro.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_namespace.cpp +0 -14
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_namespace.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_begin.c++17.cpp +0 -33
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_begin.c++17.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_no_version.cpp +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_no_version.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum.cpp +0 -59
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum_2.cpp +0 -33
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum_2.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_version.cpp +0 -12
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/nlohmann_json_version.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/number_float_t.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/number_float_t.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/number_integer_t.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/number_integer_t.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/number_unsigned_t.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/number_unsigned_t.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/object.cpp +0 -28
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/object.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/object_comparator_t.cpp +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/object_comparator_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/object_t.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/object_t.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__ValueType.cpp +0 -60
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__ValueType.output +0 -12
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__equal.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__equal.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__equal__nullptr_t.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__equal__nullptr_t.output +0 -5
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__equal__specializations.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__equal__specializations.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__greater.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__greater.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__greaterequal.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__greaterequal.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__less.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__less.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__lessequal.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__lessequal.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__notequal.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__notequal.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__notequal__nullptr_t.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__notequal__nullptr_t.output +0 -5
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__value_t.cpp +0 -38
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator__value_t.output +0 -8
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__json_pointer.cpp +0 -49
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__json_pointer.output +0 -8
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__json_pointer_const.cpp +0 -25
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__json_pointer_const.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__keytype.c++17.cpp +0 -34
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__keytype.c++17.output +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__keytype_const.c++17.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__keytype_const.c++17.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type.cpp +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type.output +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type_const.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type_const.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__size_type.cpp +0 -25
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__size_type.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__size_type_const.cpp +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_array__size_type_const.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_deserialize.cpp +0 -26
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_deserialize.output +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_literal_json.cpp +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_literal_json.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_literal_json_pointer.cpp +0 -14
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_literal_json_pointer.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_ltlt__basic_json.cpp +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_ltlt__basic_json.output +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_ltlt__json_pointer.cpp +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_ltlt__json_pointer.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_spaceship__const_reference.c++20.cpp +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_spaceship__const_reference.c++20.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_spaceship__scalartype.c++20.cpp +0 -40
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/operator_spaceship__scalartype.c++20.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/ordered_json.cpp +0 -14
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/ordered_json.output +0 -5
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/ordered_map.cpp +0 -43
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/ordered_map.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/other_error.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/other_error.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/out_of_range.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/out_of_range.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__allow_exceptions.cpp +0 -36
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__allow_exceptions.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__array__parser_callback_t.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__array__parser_callback_t.output +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__contiguouscontainer__parser_callback_t.cpp +0 -15
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__contiguouscontainer__parser_callback_t.output +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__istream__parser_callback_t.cpp +0 -57
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__istream__parser_callback_t.output +0 -34
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__iterator_pair.cpp +0 -15
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__iterator_pair.link +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__iterator_pair.output +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__pointers.cpp +0 -15
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__pointers.link +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__pointers.output +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__string__parser_callback_t.cpp +0 -48
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse__string__parser_callback_t.output +0 -34
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse_error.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/parse_error.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/patch.cpp +0 -33
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/patch.output +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/patch_inplace.cpp +0 -35
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/patch_inplace.output +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/push_back.cpp +0 -25
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/push_back.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/push_back__initializer_list.cpp +0 -27
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/push_back__initializer_list.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/push_back__object_t__value.cpp +0 -25
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/push_back__object_t__value.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/rbegin.cpp +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/rbegin.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/rend.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/rend.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/sax_parse.cpp +0 -131
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/sax_parse.output +0 -37
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/sax_parse__binary.cpp +0 -114
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/sax_parse__binary.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/size.cpp +0 -29
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/size.output +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/std_hash.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/std_hash.output +0 -8
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/std_swap.cpp +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/std_swap.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/string_t.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/string_t.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__array_t.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__array_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__binary_t.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__binary_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__object_t.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__object_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__reference.cpp +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__reference.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__string_t.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/swap__string_t.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_bjdata.cpp +0 -64
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_bjdata.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_bson.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_bson.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_cbor.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_cbor.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_json.cpp +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_json.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_msgpack.cpp +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_msgpack.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_string.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_string.output +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_ubjson.cpp +0 -64
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/to_ubjson.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/type.cpp +0 -28
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/type.output +0 -8
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/type_error.cpp +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/type_error.output +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/type_name.cpp +0 -27
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/type_name.output +0 -8
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/unflatten.cpp +0 -26
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/unflatten.output +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/update.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/update.output +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/update__range.cpp +0 -24
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/update__range.output +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/value__json_ptr.cpp +0 -31
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/value__json_ptr.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/value__keytype.c++17.cpp +0 -32
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/value__keytype.c++17.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/value__object_t_key_type.cpp +0 -30
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/value__object_t_key_type.output +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/value__return_type.cpp +0 -14
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/examples/value__return_type.output +0 -4
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/arbitrary_types.md +0 -294
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/assertions.md +0 -144
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/binary_formats/bjdata.md +0 -206
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/binary_formats/bson.md +0 -97
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/binary_formats/cbor.md +0 -181
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/binary_formats/index.md +0 -52
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/binary_formats/messagepack.md +0 -143
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/binary_formats/ubjson.md +0 -126
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/binary_values.md +0 -374
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/comments.md +0 -83
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/element_access/checked_access.md +0 -91
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/element_access/default_value.md +0 -63
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/element_access/index.md +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/element_access/unchecked_access.md +0 -112
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/enum_conversion.md +0 -61
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/iterators.md +0 -155
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/json_patch.md +0 -47
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/json_pointer.md +0 -126
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/macros.md +0 -135
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/merge_patch.md +0 -20
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/namespace.md +0 -94
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/object_order.md +0 -109
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/parsing/index.md +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/parsing/json_lines.md +0 -49
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/parsing/parse_exceptions.md +0 -121
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/parsing/parser_callbacks.md +0 -83
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/parsing/sax_interface.md +0 -76
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/types/index.md +0 -271
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/features/types/number_handling.md +0 -328
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/home/architecture.md +0 -124
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/home/customers.md +0 -162
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/home/design_goals.md +0 -17
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/home/exceptions.md +0 -902
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/home/faq.md +0 -180
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/home/license.md +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/home/releases.md +0 -1225
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/home/sponsors.md +0 -19
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/callback_events.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/customers.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/json.gif +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/json_syntax_number.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/CPM.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/bazel.svg +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/conan.svg +0 -16
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/conda.svg +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/homebrew.svg +0 -22
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/macports.svg +0 -81
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/meson.svg +0 -2
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/nuget.svg +0 -21
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/spack.svg +0 -61
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/swift.svg +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/vcpkg.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/package_managers/xmake.svg +0 -60
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/range-begin-end.svg +0 -435
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/images/range-rbegin-rend.svg +0 -1232
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/index.md +0 -3
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/bazel/BUILD +0 -5
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/bazel/MODULE.bazel +0 -1
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/bazel/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/cget/CMakeLists.txt +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/cget/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/cmake.md +0 -178
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/conan/CMakeLists.txt +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/conan/Conanfile.txt +0 -6
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/conan/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/conda/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/cpm/CMakeLists.txt +0 -9
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/cpm/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/homebrew/CMakeLists.txt +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/homebrew/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/hunter/CMakeLists.txt +0 -15
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/hunter/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/index.md +0 -18
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/macports/CMakeLists.txt +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/macports/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/meson/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/meson/meson.build +0 -12
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/migration_guide.md +0 -264
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/nuget/nuget-package-content.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/nuget/nuget-project-changes.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/nuget/nuget-project-makefile.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/nuget/nuget-search-package.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/nuget/nuget-select-package.png +0 -0
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/package_managers.md +0 -826
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/pkg-config.md +0 -13
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/spack/CMakeLists.txt +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/spack/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/vcpkg/CMakeLists.txt +0 -7
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/vcpkg/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/xmake/example.cpp +0 -10
- ntgcalls-2.0.6/deps/json/docs/mkdocs/docs/integration/xmake/xmake.lua +0 -8
- ntgcalls-2.0.6/deps/json/docs/mkdocs/includes/glossary.md +0 -36
- ntgcalls-2.0.6/deps/json/docs/mkdocs/mkdocs.yml +0 -380
- ntgcalls-2.0.6/deps/json/docs/mkdocs/requirements.txt +0 -11
- ntgcalls-2.0.6/deps/json/docs/mkdocs/scripts/check_structure.py +0 -222
- ntgcalls-2.0.6/deps/json/include/nlohmann/adl_serializer.hpp +0 -55
- ntgcalls-2.0.6/deps/json/include/nlohmann/byte_container_with_subtype.hpp +0 -103
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/abi_macros.hpp +0 -111
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/conversions/from_json.hpp +0 -572
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/conversions/to_chars.hpp +0 -1118
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/conversions/to_json.hpp +0 -474
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/exceptions.hpp +0 -291
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/hash.hpp +0 -129
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/input/binary_reader.hpp +0 -3068
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/input/input_adapters.hpp +0 -549
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/input/json_sax.hpp +0 -986
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/input/lexer.hpp +0 -1643
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/input/parser.hpp +0 -519
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/input/position_t.hpp +0 -37
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/iterators/internal_iterator.hpp +0 -35
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/iterators/iter_impl.hpp +0 -760
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/iterators/iteration_proxy.hpp +0 -235
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/iterators/iterator_traits.hpp +0 -61
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +0 -130
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/iterators/primitive_iterator.hpp +0 -132
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/json_custom_base_class.hpp +0 -39
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/json_pointer.hpp +0 -988
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/json_ref.hpp +0 -78
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/macro_scope.hpp +0 -590
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/macro_unscope.hpp +0 -45
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/call_std/begin.hpp +0 -17
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/call_std/end.hpp +0 -17
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/cpp_future.hpp +0 -171
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/detected.hpp +0 -70
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/identity_tag.hpp +0 -21
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/is_sax.hpp +0 -159
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/std_fs.hpp +0 -29
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/type_traits.hpp +0 -795
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/meta/void_t.hpp +0 -24
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/output/binary_writer.hpp +0 -1850
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/output/output_adapters.hpp +0 -147
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/output/serializer.hpp +0 -988
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/string_concat.hpp +0 -146
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/string_escape.hpp +0 -72
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/string_utils.hpp +0 -37
- ntgcalls-2.0.6/deps/json/include/nlohmann/detail/value_t.hpp +0 -118
- ntgcalls-2.0.6/deps/json/include/nlohmann/json.hpp +0 -5306
- ntgcalls-2.0.6/deps/json/include/nlohmann/json_fwd.hpp +0 -75
- ntgcalls-2.0.6/deps/json/include/nlohmann/ordered_map.hpp +0 -359
- ntgcalls-2.0.6/deps/json/include/nlohmann/thirdparty/hedley/hedley.hpp +0 -2045
- ntgcalls-2.0.6/deps/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +0 -158
- ntgcalls-2.0.6/deps/json/meson.build +0 -24
- ntgcalls-2.0.6/deps/json/nlohmann_json.natvis +0 -278
- ntgcalls-2.0.6/deps/json/single_include/nlohmann/json.hpp +0 -25510
- ntgcalls-2.0.6/deps/json/single_include/nlohmann/json_fwd.hpp +0 -187
- ntgcalls-2.0.6/deps/json/tests/CMakeLists.txt +0 -184
- ntgcalls-2.0.6/deps/json/tests/Makefile +0 -32
- ntgcalls-2.0.6/deps/json/tests/abi/CMakeLists.txt +0 -30
- ntgcalls-2.0.6/deps/json/tests/abi/config/CMakeLists.txt +0 -22
- ntgcalls-2.0.6/deps/json/tests/abi/config/config.hpp +0 -35
- ntgcalls-2.0.6/deps/json/tests/abi/config/custom.cpp +0 -33
- ntgcalls-2.0.6/deps/json/tests/abi/config/default.cpp +0 -45
- ntgcalls-2.0.6/deps/json/tests/abi/config/noversion.cpp +0 -44
- ntgcalls-2.0.6/deps/json/tests/abi/diag/CMakeLists.txt +0 -19
- ntgcalls-2.0.6/deps/json/tests/abi/diag/diag.cpp +0 -29
- ntgcalls-2.0.6/deps/json/tests/abi/diag/diag.hpp +0 -20
- ntgcalls-2.0.6/deps/json/tests/abi/diag/diag_off.cpp +0 -30
- ntgcalls-2.0.6/deps/json/tests/abi/diag/diag_on.cpp +0 -30
- ntgcalls-2.0.6/deps/json/tests/abi/include/nlohmann/json_v3_10_5.hpp +0 -22091
- ntgcalls-2.0.6/deps/json/tests/abi/inline_ns/CMakeLists.txt +0 -12
- ntgcalls-2.0.6/deps/json/tests/abi/inline_ns/use_current.cpp +0 -36
- ntgcalls-2.0.6/deps/json/tests/abi/inline_ns/use_v3_10_5.cpp +0 -22
- ntgcalls-2.0.6/deps/json/tests/abi/main.cpp +0 -10
- ntgcalls-2.0.6/deps/json/tests/benchmarks/CMakeLists.txt +0 -34
- ntgcalls-2.0.6/deps/json/tests/benchmarks/src/benchmarks.cpp +0 -217
- ntgcalls-2.0.6/deps/json/tests/cmake_add_subdirectory/CMakeLists.txt +0 -18
- ntgcalls-2.0.6/deps/json/tests/cmake_add_subdirectory/project/CMakeLists.txt +0 -20
- ntgcalls-2.0.6/deps/json/tests/cmake_add_subdirectory/project/main.cpp +0 -16
- ntgcalls-2.0.6/deps/json/tests/cmake_fetch_content/CMakeLists.txt +0 -20
- ntgcalls-2.0.6/deps/json/tests/cmake_fetch_content/project/CMakeLists.txt +0 -20
- ntgcalls-2.0.6/deps/json/tests/cmake_fetch_content/project/main.cpp +0 -16
- ntgcalls-2.0.6/deps/json/tests/cmake_fetch_content2/CMakeLists.txt +0 -20
- ntgcalls-2.0.6/deps/json/tests/cmake_fetch_content2/project/CMakeLists.txt +0 -15
- ntgcalls-2.0.6/deps/json/tests/cmake_fetch_content2/project/main.cpp +0 -16
- ntgcalls-2.0.6/deps/json/tests/cmake_import/CMakeLists.txt +0 -19
- ntgcalls-2.0.6/deps/json/tests/cmake_import/project/CMakeLists.txt +0 -12
- ntgcalls-2.0.6/deps/json/tests/cmake_import/project/main.cpp +0 -16
- ntgcalls-2.0.6/deps/json/tests/cmake_import_minver/CMakeLists.txt +0 -19
- ntgcalls-2.0.6/deps/json/tests/cmake_import_minver/project/CMakeLists.txt +0 -8
- ntgcalls-2.0.6/deps/json/tests/cmake_import_minver/project/main.cpp +0 -16
- ntgcalls-2.0.6/deps/json/tests/cmake_target_include_directories/CMakeLists.txt +0 -18
- ntgcalls-2.0.6/deps/json/tests/cmake_target_include_directories/project/Bar.cpp +0 -11
- ntgcalls-2.0.6/deps/json/tests/cmake_target_include_directories/project/Bar.hpp +0 -12
- ntgcalls-2.0.6/deps/json/tests/cmake_target_include_directories/project/CMakeLists.txt +0 -21
- ntgcalls-2.0.6/deps/json/tests/cmake_target_include_directories/project/Foo.cpp +0 -11
- ntgcalls-2.0.6/deps/json/tests/cmake_target_include_directories/project/Foo.hpp +0 -12
- ntgcalls-2.0.6/deps/json/tests/cmake_target_include_directories/project/main.cpp +0 -16
- ntgcalls-2.0.6/deps/json/tests/cuda_example/CMakeLists.txt +0 -10
- ntgcalls-2.0.6/deps/json/tests/cuda_example/json_cuda.cu +0 -19
- ntgcalls-2.0.6/deps/json/tests/fuzzing.md +0 -81
- ntgcalls-2.0.6/deps/json/tests/reports/2016-08-29-fuzz/exec_speed.png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-08-29-fuzz/fuzz.tiff +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-08-29-fuzz/high_freq.png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-08-29-fuzz/index.html +0 -10
- ntgcalls-2.0.6/deps/json/tests/reports/2016-08-29-fuzz/low_freq.png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-09-09-nativejson_benchmark/README.md +0 -31
- ntgcalls-2.0.6/deps/json/tests/reports/2016-09-09-nativejson_benchmark/conformance_Nlohmann (C++11).md +0 -670
- ntgcalls-2.0.6/deps/json/tests/reports/2016-09-09-nativejson_benchmark/conformance_overall_Result.png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Memory_(byte).png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Time_(ms).png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_2._Stringify_Time_(ms).png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_3._Prettify_Time_(ms).png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_7._Code_size_FileSize_(byte).png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-10-02-fuzz/exec_speed.png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-10-02-fuzz/fuzz.tiff +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-10-02-fuzz/high_freq.png +0 -0
- ntgcalls-2.0.6/deps/json/tests/reports/2016-10-02-fuzz/index.html +0 -10
- ntgcalls-2.0.6/deps/json/tests/reports/2016-10-02-fuzz/low_freq.png +0 -0
- ntgcalls-2.0.6/deps/json/tests/src/fuzzer-driver_afl.cpp +0 -39
- ntgcalls-2.0.6/deps/json/tests/src/fuzzer-parse_bjdata.cpp +0 -85
- ntgcalls-2.0.6/deps/json/tests/src/fuzzer-parse_bson.cpp +0 -74
- ntgcalls-2.0.6/deps/json/tests/src/fuzzer-parse_cbor.cpp +0 -69
- ntgcalls-2.0.6/deps/json/tests/src/fuzzer-parse_json.cpp +0 -70
- ntgcalls-2.0.6/deps/json/tests/src/fuzzer-parse_msgpack.cpp +0 -69
- ntgcalls-2.0.6/deps/json/tests/src/fuzzer-parse_ubjson.cpp +0 -85
- ntgcalls-2.0.6/deps/json/tests/src/make_test_data_available.hpp +0 -30
- ntgcalls-2.0.6/deps/json/tests/src/test_utils.hpp +0 -33
- ntgcalls-2.0.6/deps/json/tests/src/unit-32bit.cpp +0 -134
- ntgcalls-2.0.6/deps/json/tests/src/unit-algorithms.cpp +0 -365
- ntgcalls-2.0.6/deps/json/tests/src/unit-allocator.cpp +0 -263
- ntgcalls-2.0.6/deps/json/tests/src/unit-alt-string.cpp +0 -370
- ntgcalls-2.0.6/deps/json/tests/src/unit-assert_macro.cpp +0 -48
- ntgcalls-2.0.6/deps/json/tests/src/unit-binary_formats.cpp +0 -211
- ntgcalls-2.0.6/deps/json/tests/src/unit-bjdata.cpp +0 -3713
- ntgcalls-2.0.6/deps/json/tests/src/unit-bson.cpp +0 -1296
- ntgcalls-2.0.6/deps/json/tests/src/unit-byte_container_with_subtype.cpp +0 -76
- ntgcalls-2.0.6/deps/json/tests/src/unit-capacity.cpp +0 -542
- ntgcalls-2.0.6/deps/json/tests/src/unit-cbor.cpp +0 -2704
- ntgcalls-2.0.6/deps/json/tests/src/unit-class_const_iterator.cpp +0 -393
- ntgcalls-2.0.6/deps/json/tests/src/unit-class_iterator.cpp +0 -468
- ntgcalls-2.0.6/deps/json/tests/src/unit-class_lexer.cpp +0 -226
- ntgcalls-2.0.6/deps/json/tests/src/unit-class_parser.cpp +0 -1691
- ntgcalls-2.0.6/deps/json/tests/src/unit-class_parser_diagnostic_positions.cpp +0 -1957
- ntgcalls-2.0.6/deps/json/tests/src/unit-comparison.cpp +0 -596
- ntgcalls-2.0.6/deps/json/tests/src/unit-concepts.cpp +0 -149
- ntgcalls-2.0.6/deps/json/tests/src/unit-constructor1.cpp +0 -1581
- ntgcalls-2.0.6/deps/json/tests/src/unit-constructor2.cpp +0 -186
- ntgcalls-2.0.6/deps/json/tests/src/unit-convenience.cpp +0 -205
- ntgcalls-2.0.6/deps/json/tests/src/unit-conversions.cpp +0 -1728
- ntgcalls-2.0.6/deps/json/tests/src/unit-custom-base-class.cpp +0 -335
- ntgcalls-2.0.6/deps/json/tests/src/unit-deserialization.cpp +0 -1191
- ntgcalls-2.0.6/deps/json/tests/src/unit-diagnostic-positions-only.cpp +0 -44
- ntgcalls-2.0.6/deps/json/tests/src/unit-diagnostic-positions.cpp +0 -40
- ntgcalls-2.0.6/deps/json/tests/src/unit-diagnostics.cpp +0 -265
- ntgcalls-2.0.6/deps/json/tests/src/unit-disabled_exceptions.cpp +0 -51
- ntgcalls-2.0.6/deps/json/tests/src/unit-element_access1.cpp +0 -880
- ntgcalls-2.0.6/deps/json/tests/src/unit-element_access2.cpp +0 -1792
- ntgcalls-2.0.6/deps/json/tests/src/unit-hash.cpp +0 -113
- ntgcalls-2.0.6/deps/json/tests/src/unit-inspection.cpp +0 -459
- ntgcalls-2.0.6/deps/json/tests/src/unit-items.cpp +0 -1433
- ntgcalls-2.0.6/deps/json/tests/src/unit-iterators1.cpp +0 -1630
- ntgcalls-2.0.6/deps/json/tests/src/unit-iterators2.cpp +0 -971
- ntgcalls-2.0.6/deps/json/tests/src/unit-iterators3.cpp +0 -35
- ntgcalls-2.0.6/deps/json/tests/src/unit-json_patch.cpp +0 -1336
- ntgcalls-2.0.6/deps/json/tests/src/unit-json_pointer.cpp +0 -791
- ntgcalls-2.0.6/deps/json/tests/src/unit-large_json.cpp +0 -29
- ntgcalls-2.0.6/deps/json/tests/src/unit-locale-cpp.cpp +0 -161
- ntgcalls-2.0.6/deps/json/tests/src/unit-merge_patch.cpp +0 -244
- ntgcalls-2.0.6/deps/json/tests/src/unit-meta.cpp +0 -36
- ntgcalls-2.0.6/deps/json/tests/src/unit-modifiers.cpp +0 -952
- ntgcalls-2.0.6/deps/json/tests/src/unit-msgpack.cpp +0 -1882
- ntgcalls-2.0.6/deps/json/tests/src/unit-no-mem-leak-on-adl-serialize.cpp +0 -86
- ntgcalls-2.0.6/deps/json/tests/src/unit-noexcept.cpp +0 -83
- ntgcalls-2.0.6/deps/json/tests/src/unit-ordered_json.cpp +0 -71
- ntgcalls-2.0.6/deps/json/tests/src/unit-ordered_map.cpp +0 -310
- ntgcalls-2.0.6/deps/json/tests/src/unit-pointer_access.cpp +0 -479
- ntgcalls-2.0.6/deps/json/tests/src/unit-readme.cpp +0 -304
- ntgcalls-2.0.6/deps/json/tests/src/unit-reference_access.cpp +0 -247
- ntgcalls-2.0.6/deps/json/tests/src/unit-regression1.cpp +0 -1530
- ntgcalls-2.0.6/deps/json/tests/src/unit-regression2.cpp +0 -1042
- ntgcalls-2.0.6/deps/json/tests/src/unit-serialization.cpp +0 -297
- ntgcalls-2.0.6/deps/json/tests/src/unit-testsuites.cpp +0 -1391
- ntgcalls-2.0.6/deps/json/tests/src/unit-to_chars.cpp +0 -516
- ntgcalls-2.0.6/deps/json/tests/src/unit-type_traits.cpp +0 -56
- ntgcalls-2.0.6/deps/json/tests/src/unit-ubjson.cpp +0 -2547
- ntgcalls-2.0.6/deps/json/tests/src/unit-udl.cpp +0 -57
- ntgcalls-2.0.6/deps/json/tests/src/unit-udt.cpp +0 -904
- ntgcalls-2.0.6/deps/json/tests/src/unit-udt_macro.cpp +0 -702
- ntgcalls-2.0.6/deps/json/tests/src/unit-unicode1.cpp +0 -620
- ntgcalls-2.0.6/deps/json/tests/src/unit-unicode2.cpp +0 -610
- ntgcalls-2.0.6/deps/json/tests/src/unit-unicode3.cpp +0 -324
- ntgcalls-2.0.6/deps/json/tests/src/unit-unicode4.cpp +0 -324
- ntgcalls-2.0.6/deps/json/tests/src/unit-unicode5.cpp +0 -324
- ntgcalls-2.0.6/deps/json/tests/src/unit-user_defined_input.cpp +0 -130
- ntgcalls-2.0.6/deps/json/tests/src/unit-windows_h.cpp +0 -23
- ntgcalls-2.0.6/deps/json/tests/src/unit-wstring.cpp +0 -99
- ntgcalls-2.0.6/deps/json/tests/src/unit.cpp +0 -10
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/CMakeLists.txt +0 -45
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerCorpus.h +0 -217
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerCrossOver.cpp +0 -52
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerDefs.h +0 -89
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerDictionary.h +0 -124
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerDriver.cpp +0 -545
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerExtFunctions.def +0 -50
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerExtFunctions.h +0 -35
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsDlsym.cpp +0 -52
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsWeak.cpp +0 -53
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsWeakAlias.cpp +0 -56
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerFlags.def +0 -115
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerIO.cpp +0 -117
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerIO.h +0 -64
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerIOPosix.cpp +0 -88
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerIOWindows.cpp +0 -282
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerInterface.h +0 -67
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerInternal.h +0 -182
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerLoop.cpp +0 -792
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerMain.cpp +0 -21
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerMerge.cpp +0 -261
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerMerge.h +0 -70
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerMutate.cpp +0 -527
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerMutate.h +0 -145
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerOptions.h +0 -68
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerRandom.h +0 -36
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerSHA1.cpp +0 -222
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerSHA1.h +0 -33
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerTracePC.cpp +0 -339
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerTracePC.h +0 -158
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerTraceState.cpp +0 -325
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerUtil.cpp +0 -218
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerUtil.h +0 -72
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerUtilDarwin.cpp +0 -152
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerUtilLinux.cpp +0 -24
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerUtilPosix.cpp +0 -117
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerUtilWindows.cpp +0 -182
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/FuzzerValueBitMap.h +0 -87
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/README.txt +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/afl/afl_driver.cpp +0 -295
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/build.sh +0 -10
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/cxx.dict +0 -122
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/standalone/StandaloneFuzzTargetMain.c +0 -41
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/AFLDriverTest.cpp +0 -22
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/AbsNegAndConstant64Test.cpp +0 -23
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/AbsNegAndConstantTest.cpp +0 -23
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/AccumulateAllocationsTest.cpp +0 -17
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/BufferOverflowOnInput.cpp +0 -23
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/CMakeLists.txt +0 -217
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/CallerCalleeTest.cpp +0 -59
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/CounterTest.cpp +0 -18
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/CustomCrossOverTest.cpp +0 -63
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/CustomMutatorTest.cpp +0 -38
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/DSO1.cpp +0 -12
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/DSO2.cpp +0 -12
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/DSOTestExtra.cpp +0 -11
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/DSOTestMain.cpp +0 -31
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/DivTest.cpp +0 -20
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/EmptyTest.cpp +0 -11
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/FourIndependentBranchesTest.cpp +0 -22
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/FullCoverageSetTest.cpp +0 -24
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/FuzzerUnittest.cpp +0 -738
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/InitializeTest.cpp +0 -28
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/LeakTest.cpp +0 -17
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/LeakTimeoutTest.cpp +0 -17
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/LoadTest.cpp +0 -22
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/MemcmpTest.cpp +0 -31
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/NthRunCrashTest.cpp +0 -18
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/NullDerefOnEmptyTest.cpp +0 -19
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/NullDerefTest.cpp +0 -26
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/OneHugeAllocTest.cpp +0 -28
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/OutOfMemorySingleLargeMallocTest.cpp +0 -27
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/OutOfMemoryTest.cpp +0 -31
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/RepeatedBytesTest.cpp +0 -29
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/RepeatedMemcmp.cpp +0 -22
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/ShrinkControlFlowTest.cpp +0 -28
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/ShrinkValueProfileTest.cpp +0 -22
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SignedIntOverflowTest.cpp +0 -28
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SimpleCmpTest.cpp +0 -46
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SimpleDictionaryTest.cpp +0 -29
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SimpleHashTest.cpp +0 -40
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SimpleTest.cpp +0 -27
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SimpleThreadedTest.cpp +0 -25
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SingleMemcmpTest.cpp +0 -17
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SingleStrcmpTest.cpp +0 -17
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SingleStrncmpTest.cpp +0 -17
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SpamyTest.cpp +0 -21
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/StrcmpTest.cpp +0 -32
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/StrncmpOOBTest.cpp +0 -21
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/StrncmpTest.cpp +0 -28
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/StrstrTest.cpp +0 -28
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SwapCmpTest.cpp +0 -34
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/Switch2Test.cpp +0 -35
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/SwitchTest.cpp +0 -58
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/ThreadedLeakTest.cpp +0 -18
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/ThreadedTest.cpp +0 -26
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/TimeoutEmptyTest.cpp +0 -14
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/TimeoutTest.cpp +0 -26
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/TraceMallocTest.cpp +0 -27
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/UninstrumentedTest.cpp +0 -11
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/afl-driver-extra-stats.test +0 -28
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/afl-driver-stderr.test +0 -10
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/caller-callee.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/coverage.test +0 -19
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/dict1.txt +0 -4
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/dump_coverage.test +0 -16
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-customcrossover.test +0 -10
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-custommutator.test +0 -4
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-dict.test +0 -6
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-dirs.test +0 -15
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-fdmask.test +0 -30
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-finalstats.test +0 -11
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-flags.test +0 -10
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-jobs.test +0 -29
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-leak.test +0 -35
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-oom-with-profile.test +0 -6
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-oom.test +0 -11
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-printcovpcs.test +0 -8
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-runs.test +0 -8
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-seed.test +0 -3
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-segv.test +0 -5
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-singleinputs.test +0 -16
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-threaded.test +0 -7
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-timeout.test +0 -19
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-traces-hooks.test +0 -25
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer-ubsan.test +0 -4
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/fuzzer.test +0 -57
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/hi.txt +0 -1
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/lit.cfg +0 -29
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/lit.site.cfg.in +0 -4
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/merge.test +0 -46
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/minimize_crash.test +0 -6
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/no-coverage/CMakeLists.txt +0 -29
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/repeated-bytes.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/shrink.test +0 -7
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/simple-cmp.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/standalone.test +0 -4
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/swap-cmp.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/trace-malloc.test +0 -10
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/ubsan/CMakeLists.txt +0 -15
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/ulimit.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/uninstrumented/CMakeLists.txt +0 -16
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/unit/lit.cfg +0 -7
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/unit/lit.site.cfg.in +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-cmp.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-cmp2.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-cmp3.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-cmp4.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-div.test +0 -3
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-load.test +0 -3
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-mem.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-set.test +0 -3
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-strcmp.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-strncmp.test +0 -2
- ntgcalls-2.0.6/deps/json/tests/thirdparty/Fuzzer/test/value-profile-switch.test +0 -3
- ntgcalls-2.0.6/deps/json/tests/thirdparty/doctest/doctest.h +0 -7106
- ntgcalls-2.0.6/deps/json/tests/thirdparty/doctest/doctest_compatibility.h +0 -37
- ntgcalls-2.0.6/deps/json/tests/thirdparty/fifo_map/fifo_map.hpp +0 -530
- ntgcalls-2.0.6/deps/json/tests/thirdparty/imapdl/filterbr.py +0 -111
- ntgcalls-2.0.6/deps/json/tools/amalgamate/CHANGES.md +0 -10
- ntgcalls-2.0.6/deps/json/tools/amalgamate/README.md +0 -65
- ntgcalls-2.0.6/deps/json/tools/amalgamate/amalgamate.py +0 -299
- ntgcalls-2.0.6/deps/json/tools/amalgamate/config_json.json +0 -8
- ntgcalls-2.0.6/deps/json/tools/amalgamate/config_json_fwd.json +0 -8
- ntgcalls-2.0.6/deps/json/tools/astyle/.astylerc +0 -80
- ntgcalls-2.0.6/deps/json/tools/astyle/requirements.txt +0 -1
- ntgcalls-2.0.6/deps/json/tools/gdb_pretty_printer/README.md +0 -79
- ntgcalls-2.0.6/deps/json/tools/gdb_pretty_printer/nlohmann-json.py +0 -32
- ntgcalls-2.0.6/deps/json/tools/generate_natvis/README.md +0 -9
- ntgcalls-2.0.6/deps/json/tools/generate_natvis/generate_natvis.py +0 -41
- ntgcalls-2.0.6/deps/json/tools/generate_natvis/nlohmann_json.natvis.j2 +0 -40
- ntgcalls-2.0.6/deps/json/tools/generate_natvis/requirements.txt +0 -1
- ntgcalls-2.0.6/deps/json/tools/macro_builder/main.cpp +0 -43
- ntgcalls-2.0.6/deps/json/tools/serve_header/README.md +0 -91
- ntgcalls-2.0.6/deps/json/tools/serve_header/demo.png +0 -0
- ntgcalls-2.0.6/deps/json/tools/serve_header/requirements.txt +0 -2
- ntgcalls-2.0.6/deps/json/tools/serve_header/serve_header.py +0 -410
- ntgcalls-2.0.6/deps/json/tools/serve_header/serve_header.yml.example +0 -15
- ntgcalls-2.0.6/deps/pybind11/.clang-tidy +0 -79
- ntgcalls-2.0.6/deps/pybind11/.codespell-ignore-lines +0 -24
- ntgcalls-2.0.6/deps/pybind11/.github/CONTRIBUTING.md +0 -388
- ntgcalls-2.0.6/deps/pybind11/.github/labeler.yml +0 -13
- ntgcalls-2.0.6/deps/pybind11/.github/labeler_merged.yml +0 -8
- ntgcalls-2.0.6/deps/pybind11/.github/pull_request_template.md +0 -19
- ntgcalls-2.0.6/deps/pybind11/.github/workflows/ci.yml +0 -1241
- ntgcalls-2.0.6/deps/pybind11/.github/workflows/configure.yml +0 -92
- ntgcalls-2.0.6/deps/pybind11/.github/workflows/emscripten.yaml +0 -30
- ntgcalls-2.0.6/deps/pybind11/.github/workflows/format.yml +0 -60
- ntgcalls-2.0.6/deps/pybind11/.github/workflows/pip.yml +0 -120
- ntgcalls-2.0.6/deps/pybind11/.gitignore +0 -46
- ntgcalls-2.0.6/deps/pybind11/.pre-commit-config.yaml +0 -156
- ntgcalls-2.0.6/deps/pybind11/CMakeLists.txt +0 -378
- ntgcalls-2.0.6/deps/pybind11/MANIFEST.in +0 -6
- ntgcalls-2.0.6/deps/pybind11/README.rst +0 -181
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/cast/custom.rst +0 -93
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/cast/overview.rst +0 -170
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/cast/stl.rst +0 -249
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/classes.rst +0 -1335
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/embedding.rst +0 -262
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/exceptions.rst +0 -401
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/functions.rst +0 -614
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/misc.rst +0 -429
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/pycpp/numpy.rst +0 -453
- ntgcalls-2.0.6/deps/pybind11/docs/advanced/smart_ptrs.rst +0 -174
- ntgcalls-2.0.6/deps/pybind11/docs/basics.rst +0 -314
- ntgcalls-2.0.6/deps/pybind11/docs/benchmark.py +0 -89
- ntgcalls-2.0.6/deps/pybind11/docs/changelog.rst +0 -3285
- ntgcalls-2.0.6/deps/pybind11/docs/classes.rst +0 -555
- ntgcalls-2.0.6/deps/pybind11/docs/compiling.rst +0 -726
- ntgcalls-2.0.6/deps/pybind11/docs/conf.py +0 -369
- ntgcalls-2.0.6/deps/pybind11/docs/faq.rst +0 -352
- ntgcalls-2.0.6/deps/pybind11/docs/index.rst +0 -48
- ntgcalls-2.0.6/deps/pybind11/docs/reference.rst +0 -130
- ntgcalls-2.0.6/deps/pybind11/docs/release.rst +0 -143
- ntgcalls-2.0.6/deps/pybind11/docs/requirements.in +0 -6
- ntgcalls-2.0.6/deps/pybind11/docs/requirements.txt +0 -275
- ntgcalls-2.0.6/deps/pybind11/docs/upgrade.rst +0 -594
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/attr.h +0 -690
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/cast.h +0 -1855
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/chrono.h +0 -225
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/class.h +0 -767
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/common.h +0 -1287
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/cpp_conduit.h +0 -77
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/descr.h +0 -172
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/exception_translation.h +0 -71
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/init.h +0 -436
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/internals.h +0 -766
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/type_caster_base.h +0 -1195
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/detail/value_and_holder.h +0 -77
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/eigen/matrix.h +0 -715
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/eigen/tensor.h +0 -515
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/embed.h +0 -313
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/eval.h +0 -156
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/functional.h +0 -149
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/gil.h +0 -219
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/gil_safe_call_once.h +0 -100
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/numpy.h +0 -2139
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/pybind11.h +0 -2978
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/pytypes.h +0 -2606
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/stl/filesystem.h +0 -124
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/stl.h +0 -448
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/stl_bind.h +0 -822
- ntgcalls-2.0.6/deps/pybind11/include/pybind11/typing.h +0 -242
- ntgcalls-2.0.6/deps/pybind11/noxfile.py +0 -107
- ntgcalls-2.0.6/deps/pybind11/pybind11/__init__.py +0 -19
- ntgcalls-2.0.6/deps/pybind11/pybind11/__main__.py +0 -86
- ntgcalls-2.0.6/deps/pybind11/pybind11/_version.py +0 -12
- ntgcalls-2.0.6/deps/pybind11/pybind11/setup_helpers.py +0 -500
- ntgcalls-2.0.6/deps/pybind11/pyproject.toml +0 -87
- ntgcalls-2.0.6/deps/pybind11/setup.cfg +0 -43
- ntgcalls-2.0.6/deps/pybind11/setup.py +0 -149
- ntgcalls-2.0.6/deps/pybind11/tests/CMakeLists.txt +0 -604
- ntgcalls-2.0.6/deps/pybind11/tests/conftest.py +0 -224
- ntgcalls-2.0.6/deps/pybind11/tests/constructor_stats.h +0 -322
- ntgcalls-2.0.6/deps/pybind11/tests/env.py +0 -31
- ntgcalls-2.0.6/deps/pybind11/tests/exo_planet_c_api.cpp +0 -103
- ntgcalls-2.0.6/deps/pybind11/tests/extra_python_package/test_files.py +0 -299
- ntgcalls-2.0.6/deps/pybind11/tests/pybind11_tests.cpp +0 -131
- ntgcalls-2.0.6/deps/pybind11/tests/pybind11_tests.h +0 -98
- ntgcalls-2.0.6/deps/pybind11/tests/pyproject.toml +0 -21
- ntgcalls-2.0.6/deps/pybind11/tests/pytest.ini +0 -23
- ntgcalls-2.0.6/deps/pybind11/tests/requirements.txt +0 -13
- ntgcalls-2.0.6/deps/pybind11/tests/test_buffers.cpp +0 -271
- ntgcalls-2.0.6/deps/pybind11/tests/test_buffers.py +0 -237
- ntgcalls-2.0.6/deps/pybind11/tests/test_builtin_casters.cpp +0 -387
- ntgcalls-2.0.6/deps/pybind11/tests/test_builtin_casters.py +0 -532
- ntgcalls-2.0.6/deps/pybind11/tests/test_call_policies.cpp +0 -113
- ntgcalls-2.0.6/deps/pybind11/tests/test_call_policies.py +0 -249
- ntgcalls-2.0.6/deps/pybind11/tests/test_callbacks.cpp +0 -280
- ntgcalls-2.0.6/deps/pybind11/tests/test_callbacks.py +0 -230
- ntgcalls-2.0.6/deps/pybind11/tests/test_class.cpp +0 -656
- ntgcalls-2.0.6/deps/pybind11/tests/test_class.py +0 -503
- ntgcalls-2.0.6/deps/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -80
- ntgcalls-2.0.6/deps/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -28
- ntgcalls-2.0.6/deps/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -39
- ntgcalls-2.0.6/deps/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -46
- ntgcalls-2.0.6/deps/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -47
- ntgcalls-2.0.6/deps/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -41
- ntgcalls-2.0.6/deps/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -47
- ntgcalls-2.0.6/deps/pybind11/tests/test_copy_move.cpp +0 -544
- ntgcalls-2.0.6/deps/pybind11/tests/test_copy_move.py +0 -140
- ntgcalls-2.0.6/deps/pybind11/tests/test_cpp_conduit.py +0 -162
- ntgcalls-2.0.6/deps/pybind11/tests/test_custom_type_casters.py +0 -124
- ntgcalls-2.0.6/deps/pybind11/tests/test_custom_type_setup.cpp +0 -41
- ntgcalls-2.0.6/deps/pybind11/tests/test_custom_type_setup.py +0 -50
- ntgcalls-2.0.6/deps/pybind11/tests/test_docstring_options.py +0 -66
- ntgcalls-2.0.6/deps/pybind11/tests/test_eigen_matrix.cpp +0 -443
- ntgcalls-2.0.6/deps/pybind11/tests/test_eigen_matrix.py +0 -816
- ntgcalls-2.0.6/deps/pybind11/tests/test_eigen_tensor.py +0 -290
- ntgcalls-2.0.6/deps/pybind11/tests/test_embed/CMakeLists.txt +0 -54
- ntgcalls-2.0.6/deps/pybind11/tests/test_embed/external_module.cpp +0 -20
- ntgcalls-2.0.6/deps/pybind11/tests/test_embed/test_interpreter.cpp +0 -488
- ntgcalls-2.0.6/deps/pybind11/tests/test_enum.cpp +0 -133
- ntgcalls-2.0.6/deps/pybind11/tests/test_enum.py +0 -270
- ntgcalls-2.0.6/deps/pybind11/tests/test_eval.py +0 -52
- ntgcalls-2.0.6/deps/pybind11/tests/test_exceptions.cpp +0 -388
- ntgcalls-2.0.6/deps/pybind11/tests/test_exceptions.py +0 -434
- ntgcalls-2.0.6/deps/pybind11/tests/test_factory_constructors.py +0 -518
- ntgcalls-2.0.6/deps/pybind11/tests/test_gil_scoped.py +0 -249
- ntgcalls-2.0.6/deps/pybind11/tests/test_kwargs_and_defaults.cpp +0 -325
- ntgcalls-2.0.6/deps/pybind11/tests/test_kwargs_and_defaults.py +0 -428
- ntgcalls-2.0.6/deps/pybind11/tests/test_local_bindings.py +0 -259
- ntgcalls-2.0.6/deps/pybind11/tests/test_methods_and_attributes.cpp +0 -492
- ntgcalls-2.0.6/deps/pybind11/tests/test_methods_and_attributes.py +0 -539
- ntgcalls-2.0.6/deps/pybind11/tests/test_modules.cpp +0 -125
- ntgcalls-2.0.6/deps/pybind11/tests/test_modules.py +0 -118
- ntgcalls-2.0.6/deps/pybind11/tests/test_multiple_inheritance.py +0 -495
- ntgcalls-2.0.6/deps/pybind11/tests/test_numpy_array.cpp +0 -547
- ntgcalls-2.0.6/deps/pybind11/tests/test_numpy_array.py +0 -672
- ntgcalls-2.0.6/deps/pybind11/tests/test_numpy_dtypes.cpp +0 -641
- ntgcalls-2.0.6/deps/pybind11/tests/test_numpy_dtypes.py +0 -448
- ntgcalls-2.0.6/deps/pybind11/tests/test_numpy_vectorize.py +0 -268
- ntgcalls-2.0.6/deps/pybind11/tests/test_opaque_types.cpp +0 -77
- ntgcalls-2.0.6/deps/pybind11/tests/test_opaque_types.py +0 -60
- ntgcalls-2.0.6/deps/pybind11/tests/test_operator_overloading.py +0 -153
- ntgcalls-2.0.6/deps/pybind11/tests/test_pickling.cpp +0 -194
- ntgcalls-2.0.6/deps/pybind11/tests/test_pickling.py +0 -95
- ntgcalls-2.0.6/deps/pybind11/tests/test_pytypes.cpp +0 -989
- ntgcalls-2.0.6/deps/pybind11/tests/test_pytypes.py +0 -1092
- ntgcalls-2.0.6/deps/pybind11/tests/test_sequences_and_iterators.cpp +0 -600
- ntgcalls-2.0.6/deps/pybind11/tests/test_sequences_and_iterators.py +0 -267
- ntgcalls-2.0.6/deps/pybind11/tests/test_smart_ptr.cpp +0 -476
- ntgcalls-2.0.6/deps/pybind11/tests/test_smart_ptr.py +0 -317
- ntgcalls-2.0.6/deps/pybind11/tests/test_stl.cpp +0 -549
- ntgcalls-2.0.6/deps/pybind11/tests/test_stl.py +0 -383
- ntgcalls-2.0.6/deps/pybind11/tests/test_stl_binders.py +0 -395
- ntgcalls-2.0.6/deps/pybind11/tests/test_thread.cpp +0 -66
- ntgcalls-2.0.6/deps/pybind11/tests/test_thread.py +0 -49
- ntgcalls-2.0.6/deps/pybind11/tests/test_type_caster_pyobject_ptr.cpp +0 -167
- ntgcalls-2.0.6/deps/pybind11/tests/test_type_caster_pyobject_ptr.py +0 -122
- ntgcalls-2.0.6/deps/pybind11/tests/test_unnamed_namespace_a.cpp +0 -38
- ntgcalls-2.0.6/deps/pybind11/tests/test_unnamed_namespace_a.py +0 -36
- ntgcalls-2.0.6/deps/pybind11/tests/test_virtual_functions.py +0 -463
- ntgcalls-2.0.6/deps/pybind11/tools/FindPythonLibsNew.cmake +0 -310
- ntgcalls-2.0.6/deps/pybind11/tools/make_changelog.py +0 -92
- ntgcalls-2.0.6/deps/pybind11/tools/pybind11Common.cmake +0 -455
- ntgcalls-2.0.6/deps/pybind11/tools/pybind11Config.cmake.in +0 -233
- ntgcalls-2.0.6/deps/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +0 -86
- ntgcalls-2.0.6/deps/pybind11/tools/pybind11NewTools.cmake +0 -341
- ntgcalls-2.0.6/deps/pybind11/tools/pybind11Tools.cmake +0 -239
- ntgcalls-2.0.6/deps/pybind11/tools/pyproject.toml +0 -3
- ntgcalls-2.0.6/deps/pybind11/tools/setup_global.py.in +0 -63
- ntgcalls-2.0.6/deps/pybind11/tools/setup_main.py.in +0 -44
- ntgcalls-2.0.6/deps/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +0 -161
- ntgcalls-2.0.6/include/ntgcalls.h +0 -379
- ntgcalls-2.0.6/ntgcalls/CMakeLists.txt +0 -76
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/devices/base_device_module.hpp +0 -26
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/devices/camera_capturer_module.hpp +0 -42
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/devices/desktop_capturer_module.hpp +0 -42
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/devices/java_video_capturer_module.hpp +0 -40
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/instances/group_call.hpp +0 -52
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/instances/p2p_call.hpp +0 -61
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/models/media_description.hpp +0 -76
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/signaling/messages/message.hpp +0 -36
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/signaling/signaling_packet_transport.hpp +0 -74
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/signaling/signaling_sctp_connection.hpp +0 -52
- ntgcalls-2.0.6/ntgcalls/include/ntgcalls/stream_manager.hpp +0 -121
- ntgcalls-2.0.6/ntgcalls/src/bindings/ntgcalls.cpp +0 -887
- ntgcalls-2.0.6/ntgcalls/src/bindings/pythonapi.cpp +0 -292
- ntgcalls-2.0.6/ntgcalls/src/devices/camera_capturer_module.cpp +0 -138
- ntgcalls-2.0.6/ntgcalls/src/devices/desktop_capturer_module.cpp +0 -145
- ntgcalls-2.0.6/ntgcalls/src/devices/java_audio_device_module.cpp +0 -87
- ntgcalls-2.0.6/ntgcalls/src/devices/java_video_capturer_module.cpp +0 -137
- ntgcalls-2.0.6/ntgcalls/src/instances/group_call.cpp +0 -245
- ntgcalls-2.0.6/ntgcalls/src/media/audio_sink.cpp +0 -36
- ntgcalls-2.0.6/ntgcalls/src/media/video_sink.cpp +0 -42
- ntgcalls-2.0.6/ntgcalls/src/ntgcalls.cpp +0 -405
- ntgcalls-2.0.6/ntgcalls/src/signaling/messages/candidates_message.cpp +0 -30
- ntgcalls-2.0.6/ntgcalls/src/signaling/messages/initial_setup_message.cpp +0 -42
- ntgcalls-2.0.6/ntgcalls/src/signaling/messages/media_state_message.cpp +0 -58
- ntgcalls-2.0.6/ntgcalls/src/signaling/messages/negotiate_channels_message.cpp +0 -235
- ntgcalls-2.0.6/ntgcalls/src/signaling/signaling_packet_transport.cpp +0 -124
- ntgcalls-2.0.6/ntgcalls/src/stream_manager.cpp +0 -473
- ntgcalls-2.0.6/ntgcalls.egg-info/PKG-INFO +0 -172
- ntgcalls-2.0.6/ntgcalls.egg-info/SOURCES.txt +0 -1778
- ntgcalls-2.0.6/pyproject.toml +0 -42
- ntgcalls-2.0.6/setup.py +0 -182
- ntgcalls-2.0.6/version.properties +0 -14
- ntgcalls-2.0.6/wrtc/CMakeLists.txt +0 -24
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/group_connection.hpp +0 -108
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/media/audio_device_module.hpp +0 -155
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/media/channel_manager.hpp +0 -44
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/media/channels/incoming_audio_channel.hpp +0 -42
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/media/channels/outgoing_audio_channel.hpp +0 -40
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/media/channels/outgoing_video_channel.hpp +0 -39
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/media/remote_audio_sink.hpp +0 -34
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/media/rtc_audio_source.hpp +0 -29
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/media/rtc_video_source.hpp +0 -28
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/native_connection.hpp +0 -93
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/native_network_interface.hpp +0 -142
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/network_interface.hpp +0 -77
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/peer_connection/peer_connection_factory.hpp +0 -62
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/peer_connection/peer_connection_factory_with_context.hpp +0 -40
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/reflector_port.hpp +0 -159
- ntgcalls-2.0.6/wrtc/include/wrtc/interfaces/sctp_data_channel_provider_interface_impl.hpp +0 -75
- ntgcalls-2.0.6/wrtc/include/wrtc/models/content_negotiation_context.hpp +0 -98
- ntgcalls-2.0.6/wrtc/include/wrtc/models/media_content.hpp +0 -135
- ntgcalls-2.0.6/wrtc/include/wrtc/models/response_payload.hpp +0 -34
- ntgcalls-2.0.6/wrtc/src/interfaces/group_connection.cpp +0 -545
- ntgcalls-2.0.6/wrtc/src/interfaces/media/audio_device_module.cpp +0 -330
- ntgcalls-2.0.6/wrtc/src/interfaces/media/channel_manager.cpp +0 -128
- ntgcalls-2.0.6/wrtc/src/interfaces/native_connection.cpp +0 -427
- ntgcalls-2.0.6/wrtc/src/interfaces/native_network_interface.cpp +0 -614
- ntgcalls-2.0.6/wrtc/src/interfaces/network_interface.cpp +0 -81
- ntgcalls-2.0.6/wrtc/src/interfaces/peer_connection/peer_connection_factory.cpp +0 -161
- ntgcalls-2.0.6/wrtc/src/interfaces/peer_connection/peer_connection_factory_with_context.cpp +0 -69
- ntgcalls-2.0.6/wrtc/src/interfaces/reflector_port.cpp +0 -677
- ntgcalls-2.0.6/wrtc/src/models/content_negotiation_context.cpp +0 -634
- ntgcalls-2.0.6/wrtc/src/models/response_payload.cpp +0 -135
- ntgcalls-2.0.6/wrtc/src/utils/java_context.cpp +0 -27
- ntgcalls-2.0.6/wrtc/src/video_factory/hardware/android/video_factory.cpp +0 -38
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/LICENSE +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/MANIFEST.in +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/README.md +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/CleanObjects.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/DownloadProject.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/FindCURL.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/FindGLib.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/FindNDK.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/FindOpenH264.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/FindX11.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/Linux.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/PlatformUtils.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/VersionUtil.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/cmake/Windows.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.appveyor.yml +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.clang-format +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.cmake-format.yaml +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.git +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.gitattributes +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.github/CODEOWNERS +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.github/dependabot.yml +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.github/matchers/pylint.json +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.github/workflows/labeler.yml +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.github/workflows/upstream.yml +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/.readthedocs.yml +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/LICENSE +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/SECURITY.md +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/Doxyfile +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/Makefile +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/_static/css/custom.css +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/advanced/cast/chrono.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/advanced/cast/eigen.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/advanced/cast/functional.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/advanced/cast/index.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/advanced/cast/strings.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/advanced/pycpp/index.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/advanced/pycpp/object.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/advanced/pycpp/utilities.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/benchmark.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/cmake/index.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/installing.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/limitations.rst +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/pybind11-logo.png +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/pybind11_vs_boost_python1.svg +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/docs/pybind11_vs_boost_python2.svg +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/buffer_info.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/common.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/complex.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/detail/typeid.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/eigen/common.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/eigen.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/iostream.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/operators.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/options.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/pybind11/commands.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/pybind11/py.typed +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/cross_module_gil_utils.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/cross_module_interleaved_error_already_set.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/exo_planet_pybind11.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/extra_python_package/pytest.ini +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/extra_setuptools/test_setuphelper.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/home_planet_very_lonely_traveler.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/local_bindings.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/object.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/pybind11_cross_module_tests.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_async.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_async.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_chrono.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_chrono.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_cmake_build/embed.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_cmake_build/main.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_cmake_build/test.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_const_name.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_const_name.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_constants_and_functions.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_constants_and_functions.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_cpp_conduit.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_cpp_conduit_traveler_bindings.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_cpp_conduit_traveler_types.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_custom_type_casters.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_docstring_options.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_eigen_tensor.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_eigen_tensor.inl +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_embed/catch.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_embed/test_interpreter.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_embed/test_trampoline.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_eval.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_eval_call.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_exceptions.h +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_factory_constructors.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_gil_scoped.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_iostream.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_iostream.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_local_bindings.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_multiple_inheritance.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_numpy_vectorize.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_operator_overloading.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_python_multiple_inheritance.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_python_multiple_inheritance.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_stl_binders.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_tagbased_polymorphic.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_tagbased_polymorphic.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_type_caster_std_function_specializations.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_type_caster_std_function_specializations.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_union.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_union.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_unnamed_namespace_b.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_unnamed_namespace_b.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_vector_unique_ptr_member.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_vector_unique_ptr_member.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/test_virtual_functions.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/valgrind-numpy-scipy.supp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tests/valgrind-python.supp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tools/FindCatch.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tools/FindEigen3.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tools/JoinPaths.cmake +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tools/check-style.sh +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tools/cmake_uninstall.cmake.in +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tools/codespell_ignore_lines_from_errors.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tools/libsize.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/deps/pybind11/tools/pybind11.pc.in +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/devices/alsa_device_module.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/devices/device_info.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/devices/java_audio_device_module.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/devices/media_device.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/devices/media_devices.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/devices/open_sles_device_module.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/devices/pulse_device_module.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/devices/win_core_device_module.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/exceptions.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/instances/call_interface.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/audio_file_writer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/audio_mixer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/audio_shell_writer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/audio_writer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/base_io.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/base_reader.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/base_writer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/file_reader.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/shell_reader.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/threaded_audio_mixer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/io/threaded_reader.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/audio_receiver.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/audio_sink.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/audio_streamer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/base_receiver.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/base_sink.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/base_streamer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/media_source_factory.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/video_receiver.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/video_sink.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/media/video_streamer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/models/auth_params.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/models/call_network_state.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/models/dh_config.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/models/media_state.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/models/protocol.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/models/remote_source_state.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/models/rtc_server.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/ntgcalls.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/crypto/auth_key.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/crypto/mod_exp_first.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/crypto/signaling_encryption.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/external_signaling_connection.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/messages/candidates_message.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/messages/initial_setup_message.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/messages/media_state_message.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/messages/negotiate_channels_message.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/signaling.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/signaling/signaling_interface.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/utils/binding_utils.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/utils/g_lib_loop_manager.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/utils/hardware_info.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/utils/log_sink_impl.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/utils/pulse_connection.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/include/ntgcalls/utils/version_parser.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/devices/alsa_device_module.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/devices/base_device_module.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/devices/media_device.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/devices/open_sles_device_module.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/devices/pulse_device_module.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/devices/win_core_device_module.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/instances/call_interface.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/instances/p2p_call.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/audio_file_writer.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/audio_mixer.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/audio_shell_writer.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/base_io.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/base_reader.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/file_reader.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/shell_reader.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/threaded_audio_mixer.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/io/threaded_reader.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/media/audio_receiver.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/media/audio_streamer.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/media/base_sink.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/media/media_source_factory.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/media/video_receiver.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/media/video_streamer.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/models/call_network_state.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/models/rtc_server.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/signaling/crypto/auth_key.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/signaling/crypto/mod_exp_first.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/signaling/crypto/signaling_encryption.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/signaling/external_signaling_connection.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/signaling/messages/message.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/signaling/signaling.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/signaling/signaling_interface.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/signaling/signaling_sctp_connection.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/utils/g_lib_loop_manager.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/utils/hardware_info.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/utils/log_sink_impl.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/utils/pulse_connection.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls/src/utils/version_parser.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls.egg-info/dependency_links.txt +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls.egg-info/not-zip-safe +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls.egg-info/requires.txt +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/ntgcalls.egg-info/top_level.txt +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/setup.cfg +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/tests/test_ntgcalls.py +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/enums.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/exceptions.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/channels/incoming_video_channel.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/codec_lookup_helper.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/local_video_adapter.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/raw_audio_sink.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/raw_video_sink.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/remote_media_interface.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/remote_video_sink.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/tracks/audio_track_source.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/tracks/media_track_interface.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/media/tracks/video_track_source.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/audio_streaming_part.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/audio_streaming_part_internal.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/audio_streaming_part_persistent_decoder.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/audio_streaming_part_persistent_decoder_state.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/audio_streaming_part_state.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/avio_context_impl.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/extract_cv_pixel_buffer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/mtproto_stream.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/thread_buffer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/video_streaming_decoder_state.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/video_streaming_part.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/video_streaming_part_internal.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/video_streaming_part_state.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/video_streaming_shared_state.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/mtproto/wrapped_codec_parameters.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/peer_connection/data_channel_observer_impl.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/reflector_relay_port_factory.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/interfaces/wrapped_dtls_srtp_transport.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/audio_frame.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/candidate_description.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/connection_description.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/decodable_frame.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/frame.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/frame_data.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/i420_image_data.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/ice_candidate.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/media_data_packet.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/media_segment.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/outgoing_video_format.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/peer_ice_parameters.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/route_description.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/rtc_on_data_event.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/rtc_server.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/rtc_session_description.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/segment_part_request.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/simulcast_layer.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/video_streaming_av_frame.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/models/video_streaming_part_frame.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/utils/bignum.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/utils/binary.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/utils/encryption.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/utils/g_zip.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/utils/java_context.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/utils/random.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/utils/sync_helper.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/utils/synchronized_callback.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/hardware/android/android.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/hardware/android/video_factory.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/software/google/google.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/software/openh264/h264_color_space.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/software/openh264/h264_decoder.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/software/openh264/h264_encoder.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/software/openh264/layer_config.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/software/openh264/openh264.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/software/vlc/vlc.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/video_base_config.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/video_decoder_config.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/video_decoder_factory.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/video_encoder_config.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/video_encoder_factory.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/video_factory/video_factory_config.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/include/wrtc/wrtc.hpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/exceptions.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/channels/incoming_audio_channel.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/channels/incoming_video_channel.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/channels/outgoing_audio_channel.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/channels/outgoing_video_channel.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/codec_lookup_helper.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/local_video_adapter.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/raw_audio_sink.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/raw_video_sink.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/remote_audio_sink.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/remote_video_sink.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/rtc_audio_source.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/rtc_video_source.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/tracks/audio_track_source.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/tracks/media_track_interface.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/media/tracks/video_track_source.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/audio_streaming_part.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/audio_streaming_part_internal.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/audio_streaming_part_persistent_decoder.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/audio_streaming_part_persistent_decoder_state.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/audio_streaming_part_state.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/avio_context_impl.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/extract_cv_pixel_buffer.mm +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/mtproto_stream.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/thread_buffer.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/video_streaming_decoder_state.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/video_streaming_part.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/video_streaming_part_internal.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/video_streaming_part_state.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/video_streaming_shared_state.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/mtproto/wrapped_codec_parameters.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/peer_connection/data_channel_observer_impl.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/reflector_relay_port_factory.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/sctp_data_channel_provider_interface_impl.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/interfaces/wrapped_dtls_srtp_transport.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/audio_frame.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/candidate_description.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/connection_description.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/decodable_frame.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/frame.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/frame_data.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/i420_image_data.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/ice_candidate.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/media_data_packet.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/outgoing_video_format.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/route_description.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/rtc_on_data_event.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/rtc_session_description.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/simulcast_layer.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/models/video_streaming_av_frame.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/utils/bignum.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/utils/binary.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/utils/encryption.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/utils/g_zip.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/utils/random.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/utils/sync_helper.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/software/cisco/h264_color_space.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/software/cisco/h264_decoder.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/software/cisco/h264_encoder.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/software/cisco/layer_config.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/software/cisco/openh264.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/software/google/google.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/software/vlc/vlc.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/video_base_config.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/video_decoder_config.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/video_decoder_factory.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/video_encoder_config.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/video_encoder_factory.cpp +0 -0
- {ntgcalls-2.0.6 → ntgcalls-2.0.9}/wrtc/src/video_factory/video_factory_config.cpp +0 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.27)
|
|
2
|
+
|
|
3
|
+
if (WIN32)
|
|
4
|
+
add_compile_options(/wd4068)
|
|
5
|
+
endif ()
|
|
6
|
+
|
|
7
|
+
include(ExternalProject)
|
|
8
|
+
|
|
9
|
+
option(STATIC_BUILD "Build static libraries" ON)
|
|
10
|
+
option(USE_LIBCXX "Use libc++" ON)
|
|
11
|
+
|
|
12
|
+
add_custom_target(clean_objects
|
|
13
|
+
COMMAND ${CMAKE_COMMAND} -P "${CMAKE_SOURCE_DIR}/cmake/CleanObjects.cmake"
|
|
14
|
+
COMMENT "Removing all object (.o) files"
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
project(ntgcalls VERSION 2.0.9 LANGUAGES C CXX)
|
|
18
|
+
include(cmake/VersionUtil.cmake)
|
|
19
|
+
|
|
20
|
+
if (MACOS)
|
|
21
|
+
enable_language(OBJCXX)
|
|
22
|
+
endif ()
|
|
23
|
+
|
|
24
|
+
find_package(Threads REQUIRED)
|
|
25
|
+
|
|
26
|
+
get_filename_component(DEPS_DIR "deps" REALPATH)
|
|
27
|
+
get_filename_component(android_loc "android" REALPATH)
|
|
28
|
+
get_filename_component(jni_loc "${android_loc}/app/src/main/jni" REALPATH)
|
|
29
|
+
get_filename_component(props_loc "version.properties" REALPATH)
|
|
30
|
+
|
|
31
|
+
include(cmake/FindGLib.cmake)
|
|
32
|
+
include(cmake/FindX11.cmake)
|
|
33
|
+
include(cmake/FindMesa.cmake)
|
|
34
|
+
include(cmake/FindWebRTC.cmake)
|
|
35
|
+
include(cmake/FindLibCXX.cmake)
|
|
36
|
+
include(cmake/FindBoost.cmake)
|
|
37
|
+
include(cmake/FindOpenH264.cmake)
|
|
38
|
+
include(cmake/FindFFmpeg.cmake)
|
|
39
|
+
|
|
40
|
+
if (IS_PYTHON)
|
|
41
|
+
# pybind11
|
|
42
|
+
set(PYBIND11_FINDPYTHON "NEW")
|
|
43
|
+
add_subdirectory(deps/pybind11)
|
|
44
|
+
endif ()
|
|
45
|
+
|
|
46
|
+
add_subdirectory(wrtc)
|
|
47
|
+
add_subdirectory(ntgcalls)
|
ntgcalls-2.0.9/PKG-INFO
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ntgcalls
|
|
3
|
+
Version: 2.0.9
|
|
4
|
+
Summary: A Native Implementation of Telegram Calls in a seamless way.
|
|
5
|
+
Author-email: Laky-64 <iraci.matteo@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://pytgcalls.github.io/
|
|
7
|
+
Project-URL: Repository, https://github.com/pytgcalls/ntgcalls.git
|
|
8
|
+
Project-URL: Documentation, https://pytgcalls.github.io/NTgCalls
|
|
9
|
+
Project-URL: Changelog, https://pytgcalls.github.io/PyTgCalls/Changelogs
|
|
10
|
+
Keywords: audio,python,library,video,telegram,stream,ffmpeg,cpp,webrtc,voice-chat,voip,group-chat,video-calls,calls,video-chat,pytgcalls,ntgcalls,tgcalls,py-tgcalls
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
18
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Provides-Extra: test
|
|
23
|
+
Requires-Dist: pytest>=6.0; extra == "test"
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
|
|
26
|
+
<img src="https://raw.githubusercontent.com/pytgcalls/ntgcalls/master/.github/images/banner.png" alt="pytgcalls logo" />
|
|
27
|
+
<p align="center">
|
|
28
|
+
<b>A Native Implementation of Telegram Calls in a seamless way.</b>
|
|
29
|
+
<br>
|
|
30
|
+
<a href="https://github.com/pytgcalls/ntgcalls/tree/master/examples">
|
|
31
|
+
Examples
|
|
32
|
+
</a>
|
|
33
|
+
•
|
|
34
|
+
<a href="https://pytgcalls.github.io/">
|
|
35
|
+
Documentation
|
|
36
|
+
</a>
|
|
37
|
+
•
|
|
38
|
+
<a href="https://pypi.org/project/ntgcalls/">
|
|
39
|
+
PyPi
|
|
40
|
+
</a>
|
|
41
|
+
•
|
|
42
|
+
<a href="https://github.com/pytgcalls/ntgcalls/releases">
|
|
43
|
+
Releases
|
|
44
|
+
</a>
|
|
45
|
+
•
|
|
46
|
+
<a href="https://t.me/pytgcallsnews">
|
|
47
|
+
Channel
|
|
48
|
+
</a>
|
|
49
|
+
•
|
|
50
|
+
<a href="https://t.me/pytgcallschat">
|
|
51
|
+
Chat
|
|
52
|
+
</a>
|
|
53
|
+
</p>
|
|
54
|
+
|
|
55
|
+
# NTgCalls [](https://pypi.org/project/ntgcalls/) [](https://pepy.tech/project/ntgcalls)
|
|
56
|
+
NTgCalls is a lightweight open-source library for media streaming in Telegram calls. Built from scratch in C++ with WebRTC & Boost, it prioritizes accessibility to developers and resource efficiency.
|
|
57
|
+
|
|
58
|
+
| Powerful | Simple | Light |
|
|
59
|
+
|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
|
|
60
|
+
| <img src="https://raw.githubusercontent.com/pytgcalls/ntgcalls/master/.github/images/fast.gif" width=150 alt="Fast Logo"/><br>Built from scratch in C++ using Boost and libwebrtc | <img src="https://raw.githubusercontent.com/pytgcalls/ntgcalls/master/.github/images/simple.gif" width=150 alt="Simple Logo"/><br>Simple Python, GO, C Bindings and Java for Android SDK<br> | <img src="https://raw.githubusercontent.com/pytgcalls/ntgcalls/master/.github/images/light.gif" width=150 alt="Light logo"/><br>We removed anything that could burden the library, including <b>NodeJS</b> |
|
|
61
|
+
|
|
62
|
+
## Build Status
|
|
63
|
+
| Architecture | Windows | Linux | MacOS |
|
|
64
|
+
|:------------:|:-------------------------------------------------------------------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------------------------:|
|
|
65
|
+
| x86_64 |  |  |  |
|
|
66
|
+
| ARM64 |  |  |  |
|
|
67
|
+
|
|
68
|
+
## Features
|
|
69
|
+
- Pre-built binaries for macOS (arm64-v8a), Linux (x86_64, arm64-v8a), Windows (x86_64), and Android (x86, 86_64, arm64-v8a, armv7)
|
|
70
|
+
- Call flexibility: Group and private call support
|
|
71
|
+
- Media controls: pause/resume and mute/unmute
|
|
72
|
+
- Codec compatibility: H.264, HEVC (H.265), VP8, VP9, AV1, AAC, MP3, Opus
|
|
73
|
+
- Content sharing: Screen streaming, Microphone and Camera streaming
|
|
74
|
+
- Pre-built wheels for Python & AAR SDK library for Android
|
|
75
|
+
|
|
76
|
+
## Compiling
|
|
77
|
+
|
|
78
|
+
### Python Bindings
|
|
79
|
+
NTgCalls includes Python bindings for seamless integration. Follow these steps to compile it with Python Bindings:
|
|
80
|
+
1. Ensure you are in the root directory of the NTgCalls project.
|
|
81
|
+
2. Run the following command to install the Py Bindings:
|
|
82
|
+
|
|
83
|
+
```shell
|
|
84
|
+
python3 setup.py install
|
|
85
|
+
```
|
|
86
|
+
### Go Bindings
|
|
87
|
+
> [!WARNING]
|
|
88
|
+
> Static linking for Windows is not supported yet since our library is built with MSVC and Go uses MinGW for static linking.
|
|
89
|
+
> More info can be found [here](https://github.com/golang/go/issues/63903)
|
|
90
|
+
|
|
91
|
+
NTgCalls includes Go Bindings, enabling seamless integration with Go. Follow these steps to compile it with Go Bindings:
|
|
92
|
+
1. There is an example project for Go in `./examples/go/` directory, ensure you are in that directory
|
|
93
|
+
2. Prerequisites for building are the same as for building a library itself and can be found [here](https://pytgcalls.github.io/NTgCalls/Build%20Guide#Installing=Prerequisites)
|
|
94
|
+
3. Download **shared** or **static** release of the library from https://github.com/pytgcalls/ntgcalls/releases
|
|
95
|
+
4. Copy `ntgcalls.h` file into `./examples/go/ntgcalls/` directory
|
|
96
|
+
5. The rest of the files should be copied to `./examples/go/` directory
|
|
97
|
+
* `ntgcalls.dll` or `ntgcalls.lib` files in case of Windows amd64
|
|
98
|
+
* `libntgcalls.so` or `libntgcalls.a` files in case of Linux amd64
|
|
99
|
+
* `libntgcalls.dylib` or `libntgcalls.a` files in case of macOS
|
|
100
|
+
6. Then in `./examples/go/` directory run `go build` or `go run .` with CGO_ENABLED=1 env variable set
|
|
101
|
+
* `$env:CGO_ENABLED=1; go run .` for Windows PowerShell
|
|
102
|
+
* `CGO_ENABLED=1 go run .` for UNIX
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### C Bindings
|
|
106
|
+
For developers looking to use NTgCalls with C and C++, we provide C Bindings. Follow these steps to compile it with C Bindings:
|
|
107
|
+
1. Ensure you are in the root directory of the NTgCalls project.
|
|
108
|
+
2. Run the following command to generate the library:
|
|
109
|
+
```shell
|
|
110
|
+
# Static library
|
|
111
|
+
python3 setup.py build_lib --static
|
|
112
|
+
|
|
113
|
+
# Shared library
|
|
114
|
+
python3 setup.py build_lib --shared
|
|
115
|
+
```
|
|
116
|
+
3. Upon successful execution, a library will be generated in the "shared-output" or "static-output" directory, depending on the chosen option.
|
|
117
|
+
Now you can use this library to develop applications with NTgCalls.
|
|
118
|
+
4. To include the necessary headers in your C/C++ projects, you will find the "include" folder in the "shared-output" or "static-output" directory.
|
|
119
|
+
Use this folder by including the required header files.
|
|
120
|
+
|
|
121
|
+
## Key Contributors
|
|
122
|
+
* <b><a href="https://github.com/Laky-64">@Laky-64</a> (DevOps Engineer, Software Architect, Porting Engineer):</b>
|
|
123
|
+
* Played a crucial role in developing NTgCalls.
|
|
124
|
+
* Created the Python Bindings that made the library accessible to Python developers.
|
|
125
|
+
* Developed the C Bindings, enabling the library's use in various environments.
|
|
126
|
+
* <b><a href="https://github.com/dadadani">@dadadani</a> (Senior C++ Developer, Performance engineer):</b>
|
|
127
|
+
* Contributed to setting up CMakeLists and integrating with pybind11,
|
|
128
|
+
greatly simplifying the library's usage for C++ developers.
|
|
129
|
+
* <b><a href="https://github.com/kuogi">@kuogi</a> (Senior UI/UX designer, Documenter):</b>
|
|
130
|
+
* As a Senior UI/UX Designer, Kuogi has significantly improved the user interface of our documentation,
|
|
131
|
+
making it more visually appealing and user-friendly.
|
|
132
|
+
* It Has also played a key role in writing and structuring our documentation, ensuring that it is clear,
|
|
133
|
+
informative, and accessible to all users.
|
|
134
|
+
* <b><a href="https://github.com/vrumger">@vrumger</a> (Mid-level NodeJS Developer):</b>
|
|
135
|
+
* Avrumy has made important fixes and enhancements to the WebRTC component of the library,
|
|
136
|
+
improving its stability and performance.
|
|
137
|
+
|
|
138
|
+
## Junior Developers
|
|
139
|
+
* <b><a href="https://github.com/TuriOG">@TuriOG</a> (Junior Python Developer):</b>
|
|
140
|
+
* Currently working on integrating NTgCalls into <a href="//github.com/pytgcalls/pytgcalls">PyTgCalls</a>, an important step
|
|
141
|
+
in expanding the functionality and usability of the library.
|
|
142
|
+
* <b><a href="https://github.com/doggyhaha">@doggyhaha</a> (Junior DevOps, Tester):</b>
|
|
143
|
+
* Performs testing of NTgCalls on Linux to ensure its reliability and compatibility.
|
|
144
|
+
* Specializes in creating and maintaining GitHub Actions, focusing on automation tasks.
|
|
145
|
+
* <b><a href="https://github.com/tappo03">@tappo03</a> (Junior Go Developer, Tester):</b>
|
|
146
|
+
* Performs testing of NTgCalls on Windows to ensure its reliability and compatibility.
|
|
147
|
+
* It Is in the process of integrating NTgCalls into a Go wrapper, further enhancing the library's
|
|
148
|
+
versatility and accessibility.
|
|
149
|
+
|
|
150
|
+
## Special Thanks
|
|
151
|
+
* <b><a href="https://github.com/shiguredo">@shiguredo</a>:</b>
|
|
152
|
+
We extend our special thanks to 時雨堂 (shiguredo) for their invaluable assistance in integrating the WebRTC component. Their contributions,
|
|
153
|
+
using the Sora C++ SDK, have been instrumental in enhancing the functionality of our library.
|
|
154
|
+
|
|
155
|
+
* <b><a href="https://github.com/evgeny-nadymov">@evgeny-nadymov</a>:</b>
|
|
156
|
+
A heartfelt thank you to Evgeny Nadymov for graciously allowing us to use their code from telegram-react.
|
|
157
|
+
His contribution has been pivotal to the success of this project.
|
|
158
|
+
|
|
159
|
+
* <b><a href="https://github.com/morethanwords">@morethanwords</a>:</b>
|
|
160
|
+
We extend our special thanks to morethanwords for their invaluable help in integrating the connection to WebRTC with Telegram Web K.
|
|
161
|
+
Their assistance has been instrumental in enhancing the functionality of our library.
|
|
162
|
+
|
|
163
|
+
* <b><a href="https://github.com/MarshalX">@MarshalX</a>:</b> for their generous assistance in answering questions and providing insights regarding WebRTC.
|
|
164
|
+
|
|
165
|
+
* <b><a href="https://github.com/LyzCoote">@LyzCoote</a>:</b> for providing an ARM64 Server and allowing us to build an image with clang-18 preinstalled on manylinux2014 arm64.
|
|
166
|
+
|
|
167
|
+
_We would like to extend a special thanks to <b><a href='https://github.com/null-nick'>@null-nick</a></b>
|
|
168
|
+
and <b><a href='https://github.com/branchscope'>@branchscope</a></b> for their valuable contributions to the testing phase of the library and to
|
|
169
|
+
<b><a href='https://github.com/SadLuffy'>@SadLuffy</a></b> for his assistance as a copywriter.
|
|
170
|
+
Their dedication to testing and optimizing the library has been instrumental in its success._
|
|
171
|
+
|
|
172
|
+
_Additionally, we extend our gratitude to all contributors for their exceptional work in making this project a reality._
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
if (ANDROID_ABI STREQUAL "arm64-v8a")
|
|
2
|
+
target_compile_options(${target_name} PUBLIC
|
|
3
|
+
-fexperimental-relative-c++-abi-vtables
|
|
4
|
+
)
|
|
5
|
+
endif ()
|
|
6
|
+
target_link_options(${target_name} PRIVATE
|
|
7
|
+
-Wl,-z,max-page-size=16384
|
|
8
|
+
)
|
|
9
|
+
target_compile_definitions(${target_name} PUBLIC
|
|
10
|
+
WEBRTC_POSIX
|
|
11
|
+
WEBRTC_LINUX
|
|
12
|
+
WEBRTC_ANDROID
|
|
13
|
+
_LIBCPP_ABI_NAMESPACE=Cr
|
|
14
|
+
_LIBCPP_ABI_VERSION=2
|
|
15
|
+
_LIBCPP_DISABLE_AVAILABILITY
|
|
16
|
+
_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS
|
|
17
|
+
_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS
|
|
18
|
+
_LIBCPP_ENABLE_NODISCARD
|
|
19
|
+
_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_EXTENSIVE
|
|
20
|
+
BOOST_NO_CXX98_FUNCTION_BASE
|
|
21
|
+
)
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
set(BOOST_DIR ${DEPS_DIR}/boost)
|
|
2
|
+
set(BOOST_SRC ${BOOST_DIR}/src)
|
|
3
|
+
set(BOOST_GIT https://github.com/pytgcalls/boost)
|
|
4
|
+
set(BOOST_LIB_DIR ${BOOST_SRC}/lib)
|
|
5
|
+
set(BOOST_ATOMIC_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}boost_atomic${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
6
|
+
set(BOOST_CONTEXT_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}boost_context${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
7
|
+
set(BOOST_DATE_TIME_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}boost_date_time${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
8
|
+
set(BOOST_FILESYSTEM_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}boost_filesystem${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
9
|
+
set(BOOST_PROCESS_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}boost_process${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
10
|
+
set(BOOST_JSON_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}boost_json${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
11
|
+
|
|
12
|
+
if (ANDROID)
|
|
13
|
+
set(BOOST_LIB_DIR ${BOOST_LIB_DIR}/${ANDROID_ABI})
|
|
14
|
+
endif ()
|
|
15
|
+
|
|
16
|
+
if (LINUX_ARM64)
|
|
17
|
+
set(PLATFORM linux)
|
|
18
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
19
|
+
set(ARCH arm64)
|
|
20
|
+
elseif (LINUX_x86_64)
|
|
21
|
+
set(PLATFORM linux)
|
|
22
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
23
|
+
set(ARCH x86_64)
|
|
24
|
+
elseif (MACOS_ARM64)
|
|
25
|
+
set(PLATFORM macos)
|
|
26
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
27
|
+
set(ARCH arm64)
|
|
28
|
+
elseif (WINDOWS_x86_64)
|
|
29
|
+
set(PLATFORM windows)
|
|
30
|
+
set(ARCHIVE_FORMAT .zip)
|
|
31
|
+
set(ARCH x86_64)
|
|
32
|
+
elseif (ANDROID)
|
|
33
|
+
set(PLATFORM android)
|
|
34
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
35
|
+
set(ARCH ${ANDROID_ABI})
|
|
36
|
+
else ()
|
|
37
|
+
message(STATUS "Boost is not supported on ${CMAKE_SYSTEM_NAME} with ${CMAKE_HOST_SYSTEM_PROCESSOR}")
|
|
38
|
+
return()
|
|
39
|
+
endif ()
|
|
40
|
+
|
|
41
|
+
add_compile_definitions(BOOST_ALL_NO_LIB)
|
|
42
|
+
GetProperty("version.boost" BOOST_VERSION)
|
|
43
|
+
message(STATUS "boost v${BOOST_VERSION}")
|
|
44
|
+
|
|
45
|
+
set(FILE_NAME boost.${PLATFORM})
|
|
46
|
+
if (NOT ANDROID)
|
|
47
|
+
set(FILE_NAME ${FILE_NAME}-${ARCH})
|
|
48
|
+
endif ()
|
|
49
|
+
set(FILE_NAME ${FILE_NAME}${ARCHIVE_FORMAT})
|
|
50
|
+
|
|
51
|
+
DownloadProject(
|
|
52
|
+
URL ${BOOST_GIT}/releases/download/v${BOOST_VERSION}/${FILE_NAME}
|
|
53
|
+
DOWNLOAD_DIR ${BOOST_DIR}/download
|
|
54
|
+
SOURCE_DIR ${BOOST_SRC}
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
if (NOT TARGET Boost::json)
|
|
58
|
+
add_library(Boost::json STATIC IMPORTED)
|
|
59
|
+
set_target_properties(Boost::json PROPERTIES
|
|
60
|
+
INTERFACE_INCLUDE_DIRECTORIES "${BOOST_SRC}/include"
|
|
61
|
+
IMPORTED_LINK_INTERFACE_LANGUAGES CXX
|
|
62
|
+
IMPORTED_LOCATION "${BOOST_LIB_DIR}/${BOOST_JSON_LIB}"
|
|
63
|
+
)
|
|
64
|
+
endif ()
|
|
65
|
+
|
|
66
|
+
if (NOT ANDROID)
|
|
67
|
+
if (NOT TARGET Boost::atomic)
|
|
68
|
+
add_library(Boost::atomic STATIC IMPORTED)
|
|
69
|
+
set_target_properties(Boost::atomic PROPERTIES
|
|
70
|
+
INTERFACE_INCLUDE_DIRECTORIES "${BOOST_SRC}/include"
|
|
71
|
+
IMPORTED_LINK_INTERFACE_LANGUAGES CXX
|
|
72
|
+
IMPORTED_LOCATION "${BOOST_LIB_DIR}/${BOOST_ATOMIC_LIB}"
|
|
73
|
+
)
|
|
74
|
+
endif ()
|
|
75
|
+
|
|
76
|
+
if (NOT TARGET Boost::context)
|
|
77
|
+
add_library(Boost::context STATIC IMPORTED)
|
|
78
|
+
set_target_properties(Boost::context PROPERTIES
|
|
79
|
+
INTERFACE_INCLUDE_DIRECTORIES "${BOOST_SRC}/include"
|
|
80
|
+
IMPORTED_LINK_INTERFACE_LANGUAGES CXX
|
|
81
|
+
IMPORTED_LOCATION "${BOOST_LIB_DIR}/${BOOST_CONTEXT_LIB}"
|
|
82
|
+
)
|
|
83
|
+
endif ()
|
|
84
|
+
|
|
85
|
+
if (NOT TARGET Boost::date_time)
|
|
86
|
+
add_library(Boost::date_time STATIC IMPORTED)
|
|
87
|
+
set_target_properties(Boost::date_time PROPERTIES
|
|
88
|
+
INTERFACE_INCLUDE_DIRECTORIES "${BOOST_SRC}/include"
|
|
89
|
+
IMPORTED_LINK_INTERFACE_LANGUAGES CXX
|
|
90
|
+
IMPORTED_LOCATION "${BOOST_LIB_DIR}/${BOOST_DATE_TIME_LIB}"
|
|
91
|
+
)
|
|
92
|
+
endif ()
|
|
93
|
+
|
|
94
|
+
if (NOT TARGET Boost::filesystem)
|
|
95
|
+
add_library(Boost::filesystem STATIC IMPORTED)
|
|
96
|
+
set_target_properties(Boost::filesystem PROPERTIES
|
|
97
|
+
INTERFACE_INCLUDE_DIRECTORIES "${BOOST_SRC}/include"
|
|
98
|
+
IMPORTED_LINK_INTERFACE_LANGUAGES CXX
|
|
99
|
+
IMPORTED_LOCATION "${BOOST_LIB_DIR}/${BOOST_FILESYSTEM_LIB}"
|
|
100
|
+
)
|
|
101
|
+
target_link_libraries(Boost::filesystem INTERFACE Boost::atomic)
|
|
102
|
+
endif ()
|
|
103
|
+
|
|
104
|
+
if(NOT TARGET Boost::process)
|
|
105
|
+
add_library(Boost::process STATIC IMPORTED)
|
|
106
|
+
set_target_properties(Boost::process PROPERTIES
|
|
107
|
+
INTERFACE_INCLUDE_DIRECTORIES "${BOOST_SRC}/include"
|
|
108
|
+
IMPORTED_LINK_INTERFACE_LANGUAGES CXX
|
|
109
|
+
IMPORTED_LOCATION "${BOOST_LIB_DIR}/${BOOST_PROCESS_LIB}"
|
|
110
|
+
)
|
|
111
|
+
target_link_libraries(Boost::process INTERFACE Boost::atomic Boost::context Boost::date_time Boost::filesystem)
|
|
112
|
+
endif ()
|
|
113
|
+
|
|
114
|
+
add_compile_definitions(BOOST_ENABLED)
|
|
115
|
+
set(BOOST_ENABLED TRUE)
|
|
116
|
+
endif ()
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
GetProperty("version.clang" CLANG_VERSION)
|
|
2
|
+
if (LINUX_x86_64 OR MACOS_ARM64 OR ANDROID_ABI)
|
|
3
|
+
set(CLANG_DIR ${DEPS_DIR}/clang)
|
|
4
|
+
set(CLANG_LIB_DIR ${CLANG_DIR}/lib)
|
|
5
|
+
set(CLANG_BIN_DIR ${CLANG_DIR}/bin)
|
|
6
|
+
set(CLANG_UPDATE ${CLANG_DIR}/update.py)
|
|
7
|
+
set(CLANG_API_DIR ${CLANG_DIR}/result.xml)
|
|
8
|
+
|
|
9
|
+
if (MACOS_ARM64)
|
|
10
|
+
set(CLANG_OS_PREFIX Mac_arm64)
|
|
11
|
+
elseif (LINUX_x86_64 OR ANDROID)
|
|
12
|
+
set(CLANG_OS_PREFIX Linux_x64)
|
|
13
|
+
endif ()
|
|
14
|
+
|
|
15
|
+
if (NOT EXISTS ${CLANG_UPDATE} AND NOT EXISTS ${CLANG_BIN_DIR})
|
|
16
|
+
GitFile(
|
|
17
|
+
URL https://chromium.googlesource.com/chromium/src/tools/+/refs/heads/main/clang/scripts/update.py
|
|
18
|
+
DIRECTORY ${CLANG_UPDATE}
|
|
19
|
+
)
|
|
20
|
+
set(URL_BASE "https://commondatastorage.googleapis.com/chromium-browser-clang/?delimiter=/&prefix=${CLANG_OS_PREFIX}/")
|
|
21
|
+
set(URL_TMP ${URL_BASE})
|
|
22
|
+
set(BEST_GENERATION 0)
|
|
23
|
+
set(CLANG_REVISION)
|
|
24
|
+
set(CLANG_SUB_REVISION)
|
|
25
|
+
|
|
26
|
+
while (1)
|
|
27
|
+
file(DOWNLOAD ${URL_TMP} ${CLANG_API_DIR})
|
|
28
|
+
file(READ ${CLANG_API_DIR} CLANG_API_CONTENT)
|
|
29
|
+
PythonFindAllRegex(
|
|
30
|
+
REGEX "<Key>${CLANG_OS_PREFIX}/clang-(llvmorg-([0-9]+)-[\\w\-]+?)-([0-9]+)\.(tgz|tar\.xz)</Key><Generation>([0-9]+)</Generation>"
|
|
31
|
+
STRING "${CLANG_API_CONTENT}"
|
|
32
|
+
VERSIONS
|
|
33
|
+
)
|
|
34
|
+
list(LENGTH VERSIONS num_results)
|
|
35
|
+
math(EXPR VERSIONS_COUNT "${num_results} / 5 - 1")
|
|
36
|
+
if (num_results GREATER 0)
|
|
37
|
+
foreach (x RANGE 0 ${VERSIONS_COUNT})
|
|
38
|
+
math(EXPR IDX "${x} * 5")
|
|
39
|
+
set(CLANG_INFO)
|
|
40
|
+
foreach (y RANGE 4)
|
|
41
|
+
math(EXPR NEW_IDX "${IDX} + ${y}")
|
|
42
|
+
list(GET VERSIONS ${NEW_IDX} TMP_VAR)
|
|
43
|
+
list(APPEND CLANG_INFO ${TMP_VAR})
|
|
44
|
+
endforeach ()
|
|
45
|
+
list(GET CLANG_INFO 0 FOUND_CLANG_REVISION)
|
|
46
|
+
list(GET CLANG_INFO 1 FOUND_CLANG_VERSION)
|
|
47
|
+
list(GET CLANG_INFO 2 FOUND_CLANG_SUB_REVISION)
|
|
48
|
+
list(GET CLANG_INFO 4 GENERATION)
|
|
49
|
+
if (${GENERATION} GREATER ${BEST_GENERATION} AND ${FOUND_CLANG_VERSION} STREQUAL ${CLANG_VERSION})
|
|
50
|
+
set(BEST_GENERATION ${GENERATION})
|
|
51
|
+
set(CLANG_REVISION ${FOUND_CLANG_REVISION})
|
|
52
|
+
set(CLANG_SUB_REVISION ${FOUND_CLANG_SUB_REVISION})
|
|
53
|
+
endif ()
|
|
54
|
+
endforeach ()
|
|
55
|
+
endif ()
|
|
56
|
+
PythonFindAllRegex(
|
|
57
|
+
REGEX "<NextMarker>(.*?)</NextMarker>"
|
|
58
|
+
STRING "${CLANG_API_CONTENT}"
|
|
59
|
+
NEXT_MARKER
|
|
60
|
+
)
|
|
61
|
+
if (NEXT_MARKER)
|
|
62
|
+
set(URL_TMP "${URL_BASE}&marker=${NEXT_MARKER}")
|
|
63
|
+
else ()
|
|
64
|
+
break()
|
|
65
|
+
endif ()
|
|
66
|
+
endwhile ()
|
|
67
|
+
file(REMOVE ${CLANG_API_DIR})
|
|
68
|
+
file(READ ${CLANG_UPDATE} FILE_CONTENT)
|
|
69
|
+
PythonFindAllRegex(
|
|
70
|
+
REGEX "CLANG_REVISION = '.*?'"
|
|
71
|
+
STRING ${FILE_CONTENT}
|
|
72
|
+
OLD_CLANG_REVISION
|
|
73
|
+
)
|
|
74
|
+
string(REPLACE ${OLD_CLANG_REVISION} "CLANG_REVISION = '${CLANG_REVISION}'" FILE_CONTENT ${FILE_CONTENT})
|
|
75
|
+
PythonFindAllRegex(
|
|
76
|
+
REGEX "CLANG_SUB_REVISION = [0-9]+"
|
|
77
|
+
STRING ${FILE_CONTENT}
|
|
78
|
+
OLD_CLANG_SUB_REVISION
|
|
79
|
+
)
|
|
80
|
+
string(REPLACE ${OLD_CLANG_SUB_REVISION} "CLANG_SUB_REVISION = ${CLANG_SUB_REVISION}" FILE_CONTENT ${FILE_CONTENT})
|
|
81
|
+
PythonFindAllRegex(
|
|
82
|
+
REGEX "RELEASE_VERSION = '[0-9]+'"
|
|
83
|
+
STRING ${FILE_CONTENT}
|
|
84
|
+
OLD_CLANG_RELEASE
|
|
85
|
+
)
|
|
86
|
+
string(REPLACE ${OLD_CLANG_RELEASE} "RELEASE_VERSION = '${CLANG_VERSION}'" FILE_CONTENT ${FILE_CONTENT})
|
|
87
|
+
|
|
88
|
+
file(WRITE ${CLANG_UPDATE} ${FILE_CONTENT})
|
|
89
|
+
endif ()
|
|
90
|
+
|
|
91
|
+
if (NOT EXISTS ${CLANG_BIN_DIR})
|
|
92
|
+
execute_process(
|
|
93
|
+
COMMAND ${Python_EXECUTABLE} ${CLANG_UPDATE} --output-dir ${CLANG_DIR}
|
|
94
|
+
)
|
|
95
|
+
endif ()
|
|
96
|
+
if (NOT JUST_INSTALL_CLANG)
|
|
97
|
+
set(CMAKE_AR "${CLANG_BIN_DIR}/llvm-ar")
|
|
98
|
+
set(CMAKE_STRIP "${CLANG_BIN_DIR}/llvm-strip")
|
|
99
|
+
set(CMAKE_C_COMPILER "${CLANG_BIN_DIR}/clang")
|
|
100
|
+
set(CMAKE_CXX_COMPILER "${CLANG_BIN_DIR}/clang++")
|
|
101
|
+
endif ()
|
|
102
|
+
elseif (LINUX_ARM64)
|
|
103
|
+
find_program(CMAKE_C_COMPILER NAMES clang-${CLANG_VERSION} clang)
|
|
104
|
+
find_program(CMAKE_CXX_COMPILER NAMES clang++-${CLANG_VERSION} clang++)
|
|
105
|
+
find_program(CMAKE_AR NAMES llvm-ar-${CLANG_VERSION} llvm-ar)
|
|
106
|
+
find_program(CMAKE_STRIP NAMES llvm-strip-${CLANG_VERSION} llvm-strip)
|
|
107
|
+
endif ()
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
set(FFMPEG_DIR ${DEPS_DIR}/ffmpeg)
|
|
2
|
+
set(FFMPEG_SRC ${FFMPEG_DIR}/src)
|
|
3
|
+
set(FFMPEG_GIT https://github.com/pytgcalls/ffmpeg)
|
|
4
|
+
set(FFMPEG_LIB_DIR ${FFMPEG_SRC}/lib)
|
|
5
|
+
if (ANDROID)
|
|
6
|
+
set(FFMPEG_LIB_DIR ${FFMPEG_LIB_DIR}/${ANDROID_ABI})
|
|
7
|
+
endif ()
|
|
8
|
+
set(AVCODEC_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}avcodec${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
9
|
+
set(AVFORMAT_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}avformat${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
10
|
+
set(AVUTIL_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}avutil${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
11
|
+
set(SWRESAMPLE_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}swresample${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
12
|
+
set(VA_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}va${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
13
|
+
set(VA_DRM_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}va-drm${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
14
|
+
set(VA_X11_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}va-x11${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
15
|
+
set(VDPAU_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}vdpau${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
16
|
+
|
|
17
|
+
if (LINUX_ARM64)
|
|
18
|
+
set(PLATFORM linux)
|
|
19
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
20
|
+
set(ARCH arm64)
|
|
21
|
+
elseif (LINUX_x86_64)
|
|
22
|
+
set(PLATFORM linux)
|
|
23
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
24
|
+
set(ARCH x86_64)
|
|
25
|
+
elseif (MACOS_ARM64)
|
|
26
|
+
set(PLATFORM macos)
|
|
27
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
28
|
+
set(ARCH arm64)
|
|
29
|
+
elseif (WINDOWS_x86_64)
|
|
30
|
+
set(PLATFORM windows)
|
|
31
|
+
set(ARCHIVE_FORMAT .zip)
|
|
32
|
+
set(ARCH x86_64)
|
|
33
|
+
elseif (ANDROID)
|
|
34
|
+
set(PLATFORM android)
|
|
35
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
36
|
+
set(ARCH ${ANDROID_ABI})
|
|
37
|
+
else ()
|
|
38
|
+
message(STATUS "FFmpeg is not supported on ${CMAKE_SYSTEM_NAME} with ${CMAKE_HOST_SYSTEM_PROCESSOR}")
|
|
39
|
+
return()
|
|
40
|
+
endif ()
|
|
41
|
+
|
|
42
|
+
GetProperty("version.ffmpeg" FFMPEG_VERSION)
|
|
43
|
+
message(STATUS "ffmpeg v${FFMPEG_VERSION}")
|
|
44
|
+
|
|
45
|
+
set(FILE_NAME ffmpeg.${PLATFORM})
|
|
46
|
+
if (NOT ANDROID)
|
|
47
|
+
set(FILE_NAME ${FILE_NAME}-${ARCH})
|
|
48
|
+
endif ()
|
|
49
|
+
set(FILE_NAME ${FILE_NAME}${ARCHIVE_FORMAT})
|
|
50
|
+
DownloadProject(
|
|
51
|
+
URL ${FFMPEG_GIT}/releases/download/v${FFMPEG_VERSION}/${FILE_NAME}
|
|
52
|
+
DOWNLOAD_DIR ${FFMPEG_DIR}/download
|
|
53
|
+
SOURCE_DIR ${FFMPEG_SRC}
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
if (LINUX)
|
|
57
|
+
if (NOT TARGET intel::va-drm)
|
|
58
|
+
add_library(intel::va-drm STATIC IMPORTED)
|
|
59
|
+
set_target_properties(intel::va-drm PROPERTIES
|
|
60
|
+
IMPORTED_LOCATION "${FFMPEG_LIB_DIR}/${VA_DRM_LIB}")
|
|
61
|
+
endif ()
|
|
62
|
+
|
|
63
|
+
if (LINUX_x86_64)
|
|
64
|
+
if (NOT TARGET intel::va-x11)
|
|
65
|
+
add_library(intel::va-x11 STATIC IMPORTED)
|
|
66
|
+
set_target_properties(intel::va-x11 PROPERTIES
|
|
67
|
+
IMPORTED_LOCATION "${FFMPEG_LIB_DIR}/${VA_X11_LIB}")
|
|
68
|
+
endif ()
|
|
69
|
+
endif ()
|
|
70
|
+
|
|
71
|
+
if (NOT TARGET intel::va)
|
|
72
|
+
add_library(intel::va STATIC IMPORTED)
|
|
73
|
+
set_target_properties(intel::va PROPERTIES
|
|
74
|
+
IMPORTED_LOCATION "${FFMPEG_LIB_DIR}/${VA_LIB}")
|
|
75
|
+
endif ()
|
|
76
|
+
|
|
77
|
+
if (NOT TARGET mesa::vdpau)
|
|
78
|
+
add_library(mesa::vdpau STATIC IMPORTED)
|
|
79
|
+
set_target_properties(mesa::vdpau PROPERTIES
|
|
80
|
+
IMPORTED_LOCATION "${FFMPEG_LIB_DIR}/${VDPAU_LIB}")
|
|
81
|
+
endif ()
|
|
82
|
+
endif ()
|
|
83
|
+
|
|
84
|
+
if(NOT TARGET ffmpeg::avcodec)
|
|
85
|
+
add_library(ffmpeg::avcodec STATIC IMPORTED)
|
|
86
|
+
set_target_properties(ffmpeg::avcodec PROPERTIES
|
|
87
|
+
INTERFACE_INCLUDE_DIRECTORIES "${FFMPEG_SRC}/include"
|
|
88
|
+
IMPORTED_LOCATION "${FFMPEG_LIB_DIR}/${AVCODEC_LIB}")
|
|
89
|
+
|
|
90
|
+
if (IS_LINUX)
|
|
91
|
+
set_target_properties(ffmpeg::avcodec PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "-Wl,-Bsymbolic")
|
|
92
|
+
endif ()
|
|
93
|
+
endif ()
|
|
94
|
+
|
|
95
|
+
if(NOT TARGET ffmpeg::avformat)
|
|
96
|
+
add_library(ffmpeg::avformat STATIC IMPORTED)
|
|
97
|
+
set_target_properties(ffmpeg::avformat PROPERTIES
|
|
98
|
+
INTERFACE_INCLUDE_DIRECTORIES "${FFMPEG_SRC}/include"
|
|
99
|
+
IMPORTED_LOCATION "${FFMPEG_LIB_DIR}/${AVFORMAT_LIB}")
|
|
100
|
+
target_link_libraries(ffmpeg::avformat INTERFACE ffmpeg::avcodec)
|
|
101
|
+
|
|
102
|
+
if (IS_LINUX)
|
|
103
|
+
set_target_properties(ffmpeg::avformat PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "-Wl,-Bsymbolic")
|
|
104
|
+
endif ()
|
|
105
|
+
endif ()
|
|
106
|
+
|
|
107
|
+
if(NOT TARGET ffmpeg::avutil)
|
|
108
|
+
add_library(ffmpeg::avutil STATIC IMPORTED)
|
|
109
|
+
set_target_properties(ffmpeg::avutil PROPERTIES
|
|
110
|
+
INTERFACE_INCLUDE_DIRECTORIES "${FFMPEG_SRC}/include"
|
|
111
|
+
IMPORTED_LOCATION "${FFMPEG_LIB_DIR}/${AVUTIL_LIB}")
|
|
112
|
+
if (LINUX AND NOT ANDROID)
|
|
113
|
+
target_link_libraries(ffmpeg::avutil INTERFACE xorg::X11 mesa::vdpau intel::va intel::va-drm mesa::drm)
|
|
114
|
+
if (LINUX_x86_64)
|
|
115
|
+
target_link_libraries(ffmpeg::avutil INTERFACE intel::va-x11)
|
|
116
|
+
endif ()
|
|
117
|
+
set_target_properties(ffmpeg::avutil PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "-Wl,-Bsymbolic")
|
|
118
|
+
endif ()
|
|
119
|
+
endif ()
|
|
120
|
+
|
|
121
|
+
if (NOT TARGET ffmpeg::swresample)
|
|
122
|
+
add_library(ffmpeg::swresample STATIC IMPORTED)
|
|
123
|
+
set_target_properties(ffmpeg::swresample PROPERTIES
|
|
124
|
+
INTERFACE_INCLUDE_DIRECTORIES "${FFMPEG_SRC}/include"
|
|
125
|
+
IMPORTED_LOCATION "${FFMPEG_LIB_DIR}/${SWRESAMPLE_LIB}")
|
|
126
|
+
|
|
127
|
+
if (IS_LINUX)
|
|
128
|
+
set_target_properties(ffmpeg::swresample PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "-Wl,-Bsymbolic")
|
|
129
|
+
endif ()
|
|
130
|
+
endif ()
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
set(LIBCXX_INCLUDE ${DEPS_DIR}/libcxx)
|
|
2
|
+
set(LIBCXXABI_INCLUDE ${DEPS_DIR}/libcxxabi)
|
|
3
|
+
|
|
4
|
+
if((LINUX OR MACOS OR ANDROID) AND USE_LIBCXX)
|
|
5
|
+
GitClone(
|
|
6
|
+
URL https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git
|
|
7
|
+
COMMIT ${LIBCXX_COMMIT}
|
|
8
|
+
DIRECTORY ${LIBCXX_INCLUDE}
|
|
9
|
+
)
|
|
10
|
+
GitFile(
|
|
11
|
+
URL https://chromium.googlesource.com/chromium/src/buildtools.git/+/${BUILDTOOLS_COMMIT}/third_party/libc++/__config_site
|
|
12
|
+
DIRECTORY ${LIBCXX_INCLUDE}/include/__config_site
|
|
13
|
+
)
|
|
14
|
+
GitFile(
|
|
15
|
+
URL https://chromium.googlesource.com/chromium/src/buildtools.git/+/${BUILDTOOLS_COMMIT}/third_party/libc++/__assertion_handler
|
|
16
|
+
DIRECTORY ${LIBCXX_INCLUDE}/include/__assertion_handler
|
|
17
|
+
)
|
|
18
|
+
GitClone(
|
|
19
|
+
URL https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git
|
|
20
|
+
COMMIT ${LIBCXX_ABI_COMMIT}
|
|
21
|
+
DIRECTORY ${LIBCXXABI_INCLUDE}
|
|
22
|
+
)
|
|
23
|
+
add_compile_options(
|
|
24
|
+
"$<$<COMPILE_LANGUAGE:CXX>:-nostdinc++>"
|
|
25
|
+
"$<$<AND:$<COMPILE_LANGUAGE:CXX>,$<BOOL:LIBCXX_INCLUDE_DIR>>:-isystem${LIBCXX_INCLUDE}/include>"
|
|
26
|
+
"$<$<AND:$<COMPILE_LANGUAGE:CXX>,$<BOOL:LIBCXXABI_INCLUDE_DIR>>:-isystem${LIBCXXABI_INCLUDE}/include>"
|
|
27
|
+
"$<$<COMPILE_LANGUAGE:OBJCXX>:-nostdinc++>"
|
|
28
|
+
"$<$<AND:$<COMPILE_LANGUAGE:OBJCXX>,$<BOOL:LIBCXX_INCLUDE_DIR>>:-isystem${LIBCXX_INCLUDE}/include>"
|
|
29
|
+
"$<$<AND:$<COMPILE_LANGUAGE:OBJCXX>,$<BOOL:LIBCXXABI_INCLUDE_DIR>>:-isystem${LIBCXXABI_INCLUDE}/include>"
|
|
30
|
+
)
|
|
31
|
+
endif ()
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
set(MESA_DIR ${DEPS_DIR}/mesa)
|
|
2
|
+
set(MESA_SRC ${MESA_DIR}/src)
|
|
3
|
+
set(MESA_GIT https://github.com/pytgcalls/mesa)
|
|
4
|
+
set(GBM_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}gbm${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
5
|
+
set(DRM_LIB ${CMAKE_STATIC_LIBRARY_PREFIX}drm${CMAKE_STATIC_LIBRARY_SUFFIX})
|
|
6
|
+
|
|
7
|
+
if (LINUX_ARM64)
|
|
8
|
+
set(PLATFORM linux)
|
|
9
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
10
|
+
set(ARCH arm64)
|
|
11
|
+
elseif (LINUX_x86_64)
|
|
12
|
+
set(PLATFORM linux)
|
|
13
|
+
set(ARCHIVE_FORMAT .tar.gz)
|
|
14
|
+
set(ARCH x86_64)
|
|
15
|
+
else ()
|
|
16
|
+
return()
|
|
17
|
+
endif ()
|
|
18
|
+
|
|
19
|
+
GetProperty("version.mesa" MESA_VERSION)
|
|
20
|
+
message(STATUS "mesa v${MESA_VERSION}")
|
|
21
|
+
|
|
22
|
+
set(FILE_NAME mesa.${PLATFORM}-${ARCH}${ARCHIVE_FORMAT})
|
|
23
|
+
DownloadProject(
|
|
24
|
+
URL ${MESA_GIT}/releases/download/v${MESA_VERSION}/${FILE_NAME}
|
|
25
|
+
DOWNLOAD_DIR ${MESA_DIR}/download
|
|
26
|
+
SOURCE_DIR ${MESA_SRC}
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
if(NOT TARGET mesa::drm)
|
|
30
|
+
add_library(mesa::drm STATIC IMPORTED)
|
|
31
|
+
set_target_properties(mesa::drm PROPERTIES
|
|
32
|
+
INTERFACE_INCLUDE_DIRECTORIES "${MESA_SRC}/include"
|
|
33
|
+
IMPORTED_LOCATION "${MESA_SRC}/lib/${DRM_LIB}")
|
|
34
|
+
endif ()
|
|
35
|
+
|
|
36
|
+
if(NOT TARGET mesa::gbm)
|
|
37
|
+
add_library(mesa::gbm STATIC IMPORTED)
|
|
38
|
+
set_target_properties(mesa::gbm PROPERTIES
|
|
39
|
+
INTERFACE_INCLUDE_DIRECTORIES "${MESA_SRC}/include"
|
|
40
|
+
IMPORTED_LOCATION "${MESA_SRC}/lib/${GBM_LIB}")
|
|
41
|
+
target_link_libraries(mesa::gbm INTERFACE gnu::expat mesa::drm)
|
|
42
|
+
endif ()
|