koffi 0.9.0 → 0.9.3
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.
- package/CMakeLists.txt +2 -36
- package/package.json +8 -4
- package/vendor/dragonbox/CMakeLists.txt +123 -0
- package/vendor/dragonbox/LICENSE-Apache2-LLVM +218 -0
- package/vendor/dragonbox/LICENSE-Boost +23 -0
- package/vendor/dragonbox/README.md +277 -0
- package/vendor/dragonbox/cmake/dragonboxConfig.cmake +1 -0
- package/vendor/dragonbox/include/dragonbox/dragonbox.h +2670 -0
- package/vendor/dragonbox/include/dragonbox/dragonbox_to_chars.h +108 -0
- package/vendor/dragonbox/other_files/Dragonbox.pdf +0 -0
- package/vendor/dragonbox/other_files/Dragonbox_old.pdf +0 -0
- package/vendor/dragonbox/other_files/milo_benchmark.png +0 -0
- package/vendor/dragonbox/other_files/unknown_win64_vc2019.html +540 -0
- package/vendor/dragonbox/other_files/unknown_win64_vc2019_randomdigit_time.png +0 -0
- package/vendor/dragonbox/source/dragonbox_to_chars.cpp +303 -0
- package/vendor/dragonbox/subproject/3rdparty/grisu_exact/CMakeLists.txt +24 -0
- package/vendor/dragonbox/subproject/3rdparty/grisu_exact/fp_to_chars.cpp +238 -0
- package/vendor/dragonbox/subproject/3rdparty/grisu_exact/fp_to_chars.h +95 -0
- package/vendor/dragonbox/subproject/3rdparty/grisu_exact/grisu_exact.h +2666 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/CMakeLists.txt +16 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/common.h +114 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s.c +509 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s_full_table.h +367 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s_intrinsics.h +357 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/digit_table.h +35 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s.c +345 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s_full_table.h +55 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s_intrinsics.h +128 -0
- package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/ryu.h +46 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/CMakeLists.txt +22 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_32.cc +699 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_32.h +31 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_64.cc +1354 -0
- package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_64.h +31 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/example_shaded_plots.m +68 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/license.txt +25 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_distribution.m +92 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_distribution_prctile.m +121 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_histogram_shaded.m +99 -0
- package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_shaded.m +93 -0
- package/vendor/dragonbox/subproject/benchmark/CMakeLists.txt +65 -0
- package/vendor/dragonbox/subproject/benchmark/include/benchmark.h +40 -0
- package/vendor/dragonbox/subproject/benchmark/matlab/plot_benchmarks.m +22 -0
- package/vendor/dragonbox/subproject/benchmark/matlab/plot_digit_benchmark.m +78 -0
- package/vendor/dragonbox/subproject/benchmark/matlab/plot_uniform_benchmark.m +95 -0
- package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary32_clang.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary32_msvc.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary64_clang.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary64_msvc.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary32_clang.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary32_msvc.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary64_clang.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary64_msvc.png +0 -0
- package/vendor/dragonbox/subproject/benchmark/source/benchmark.cpp +238 -0
- package/vendor/dragonbox/subproject/benchmark/source/dragonbox.cpp +30 -0
- package/vendor/dragonbox/subproject/benchmark/source/grisu_exact.cpp +36 -0
- package/vendor/dragonbox/subproject/benchmark/source/ryu.cpp +27 -0
- package/vendor/dragonbox/subproject/benchmark/source/schubfach.cpp +31 -0
- package/vendor/dragonbox/subproject/common/CMakeLists.txt +42 -0
- package/vendor/dragonbox/subproject/common/include/best_rational_approx.h +97 -0
- package/vendor/dragonbox/subproject/common/include/big_uint.h +218 -0
- package/vendor/dragonbox/subproject/common/include/continued_fractions.h +174 -0
- package/vendor/dragonbox/subproject/common/include/good_rational_approx.h +267 -0
- package/vendor/dragonbox/subproject/common/include/random_float.h +182 -0
- package/vendor/dragonbox/subproject/common/include/rational_continued_fractions.h +57 -0
- package/vendor/dragonbox/subproject/common/source/big_uint.cpp +602 -0
- package/vendor/dragonbox/subproject/meta/CMakeLists.txt +41 -0
- package/vendor/dragonbox/subproject/meta/results/binary32_generated_cache.txt +82 -0
- package/vendor/dragonbox/subproject/meta/results/binary64_compressed_cache_error_table.txt +10 -0
- package/vendor/dragonbox/subproject/meta/results/binary64_generated_cache.txt +623 -0
- package/vendor/dragonbox/subproject/meta/source/generate_cache.cpp +126 -0
- package/vendor/dragonbox/subproject/meta/source/live_test.cpp +81 -0
- package/vendor/dragonbox/subproject/meta/source/perf_test.cpp +104 -0
- package/vendor/dragonbox/subproject/meta/source/sandbox.cpp +20 -0
- package/vendor/dragonbox/subproject/test/CMakeLists.txt +70 -0
- package/vendor/dragonbox/subproject/test/results/binary32.csv +255 -0
- package/vendor/dragonbox/subproject/test/results/binary64.csv +2047 -0
- package/vendor/dragonbox/subproject/test/results/plot_required_bits.m +18 -0
- package/vendor/dragonbox/subproject/test/source/test_all_shorter_interval_cases.cpp +88 -0
- package/vendor/dragonbox/subproject/test/source/uniform_random_test.cpp +95 -0
- package/vendor/dragonbox/subproject/test/source/verify_cache_precision.cpp +338 -0
- package/vendor/dragonbox/subproject/test/source/verify_compressed_cache.cpp +154 -0
- package/vendor/dragonbox/subproject/test/source/verify_fast_multiplication.cpp +168 -0
- package/vendor/dragonbox/subproject/test/source/verify_log_computation.cpp +251 -0
- package/vendor/dragonbox/subproject/test/source/verify_magic_division.cpp +113 -0
- package/vendor/libcc/libcc.cc +7651 -0
- package/vendor/libcc/libcc.hh +4312 -0
- package/vendor/node-addon-api/CHANGELOG.md +859 -0
- package/vendor/node-addon-api/CODE_OF_CONDUCT.md +4 -0
- package/vendor/node-addon-api/CONTRIBUTING.md +93 -0
- package/vendor/node-addon-api/LICENSE.md +13 -0
- package/vendor/node-addon-api/README.md +293 -0
- package/vendor/node-addon-api/appveyor.yml +37 -0
- package/vendor/node-addon-api/benchmark/README.md +47 -0
- package/vendor/node-addon-api/benchmark/binding.gyp +25 -0
- package/vendor/node-addon-api/benchmark/function_args.cc +217 -0
- package/vendor/node-addon-api/benchmark/function_args.js +60 -0
- package/vendor/node-addon-api/benchmark/index.js +34 -0
- package/vendor/node-addon-api/benchmark/property_descriptor.cc +91 -0
- package/vendor/node-addon-api/benchmark/property_descriptor.js +37 -0
- package/vendor/node-addon-api/common.gypi +21 -0
- package/vendor/node-addon-api/doc/addon.md +163 -0
- package/vendor/node-addon-api/doc/array.md +81 -0
- package/vendor/node-addon-api/doc/array_buffer.md +155 -0
- package/vendor/node-addon-api/doc/async_context.md +86 -0
- package/vendor/node-addon-api/doc/async_operations.md +31 -0
- package/vendor/node-addon-api/doc/async_worker.md +427 -0
- package/vendor/node-addon-api/doc/async_worker_variants.md +557 -0
- package/vendor/node-addon-api/doc/bigint.md +97 -0
- package/vendor/node-addon-api/doc/boolean.md +68 -0
- package/vendor/node-addon-api/doc/buffer.md +150 -0
- package/vendor/node-addon-api/doc/callback_scope.md +54 -0
- package/vendor/node-addon-api/doc/callbackinfo.md +97 -0
- package/vendor/node-addon-api/doc/checker-tool.md +32 -0
- package/vendor/node-addon-api/doc/class_property_descriptor.md +115 -0
- package/vendor/node-addon-api/doc/cmake-js.md +68 -0
- package/vendor/node-addon-api/doc/conversion-tool.md +28 -0
- package/vendor/node-addon-api/doc/creating_a_release.md +62 -0
- package/vendor/node-addon-api/doc/dataview.md +248 -0
- package/vendor/node-addon-api/doc/date.md +68 -0
- package/vendor/node-addon-api/doc/env.md +196 -0
- package/vendor/node-addon-api/doc/error.md +120 -0
- package/vendor/node-addon-api/doc/error_handling.md +254 -0
- package/vendor/node-addon-api/doc/escapable_handle_scope.md +80 -0
- package/vendor/node-addon-api/doc/external.md +63 -0
- package/vendor/node-addon-api/doc/function.md +402 -0
- package/vendor/node-addon-api/doc/function_reference.md +238 -0
- package/vendor/node-addon-api/doc/generator.md +13 -0
- package/vendor/node-addon-api/doc/handle_scope.md +63 -0
- package/vendor/node-addon-api/doc/hierarchy.md +91 -0
- package/vendor/node-addon-api/doc/instance_wrap.md +408 -0
- package/vendor/node-addon-api/doc/maybe.md +76 -0
- package/vendor/node-addon-api/doc/memory_management.md +27 -0
- package/vendor/node-addon-api/doc/name.md +29 -0
- package/vendor/node-addon-api/doc/node-gyp.md +82 -0
- package/vendor/node-addon-api/doc/number.md +163 -0
- package/vendor/node-addon-api/doc/object.md +432 -0
- package/vendor/node-addon-api/doc/object_lifetime_management.md +83 -0
- package/vendor/node-addon-api/doc/object_reference.md +117 -0
- package/vendor/node-addon-api/doc/object_wrap.md +561 -0
- package/vendor/node-addon-api/doc/prebuild_tools.md +16 -0
- package/vendor/node-addon-api/doc/promises.md +79 -0
- package/vendor/node-addon-api/doc/property_descriptor.md +286 -0
- package/vendor/node-addon-api/doc/propertylvalue.md +50 -0
- package/vendor/node-addon-api/doc/range_error.md +59 -0
- package/vendor/node-addon-api/doc/reference.md +113 -0
- package/vendor/node-addon-api/doc/setup.md +110 -0
- package/vendor/node-addon-api/doc/string.md +93 -0
- package/vendor/node-addon-api/doc/symbol.md +61 -0
- package/vendor/node-addon-api/doc/threadsafe.md +121 -0
- package/vendor/node-addon-api/doc/threadsafe_function.md +290 -0
- package/vendor/node-addon-api/doc/type_error.md +59 -0
- package/vendor/node-addon-api/doc/typed_array.md +78 -0
- package/vendor/node-addon-api/doc/typed_array_of.md +137 -0
- package/vendor/node-addon-api/doc/typed_threadsafe_function.md +306 -0
- package/vendor/node-addon-api/doc/value.md +340 -0
- package/vendor/node-addon-api/doc/version_management.md +43 -0
- package/vendor/node-addon-api/except.gypi +25 -0
- package/vendor/node-addon-api/index.js +11 -0
- package/vendor/node-addon-api/napi-inl.deprecated.h +192 -0
- package/vendor/node-addon-api/napi-inl.h +6209 -0
- package/vendor/node-addon-api/napi.h +2983 -0
- package/vendor/node-addon-api/node_api.gyp +9 -0
- package/vendor/node-addon-api/noexcept.gypi +26 -0
- package/vendor/node-addon-api/nothing.c +0 -0
- package/vendor/node-addon-api/package-support.json +21 -0
- package/vendor/node-addon-api/package.json +399 -0
- package/vendor/node-addon-api/test/README.md +91 -0
- package/vendor/node-addon-api/test/addon.cc +36 -0
- package/vendor/node-addon-api/test/addon.js +11 -0
- package/vendor/node-addon-api/test/addon_build/index.js +49 -0
- package/vendor/node-addon-api/test/addon_build/tpl/addon.cc +17 -0
- package/vendor/node-addon-api/test/addon_build/tpl/binding.gyp +62 -0
- package/vendor/node-addon-api/test/addon_build/tpl/index.js +9 -0
- package/vendor/node-addon-api/test/addon_build/tpl/package.json +11 -0
- package/vendor/node-addon-api/test/addon_data.cc +99 -0
- package/vendor/node-addon-api/test/addon_data.js +46 -0
- package/vendor/node-addon-api/test/array_buffer.cc +243 -0
- package/vendor/node-addon-api/test/array_buffer.js +69 -0
- package/vendor/node-addon-api/test/async_context.cc +21 -0
- package/vendor/node-addon-api/test/async_context.js +86 -0
- package/vendor/node-addon-api/test/async_progress_queue_worker.cc +83 -0
- package/vendor/node-addon-api/test/async_progress_queue_worker.js +46 -0
- package/vendor/node-addon-api/test/async_progress_worker.cc +134 -0
- package/vendor/node-addon-api/test/async_progress_worker.js +61 -0
- package/vendor/node-addon-api/test/async_worker.cc +106 -0
- package/vendor/node-addon-api/test/async_worker.js +179 -0
- package/vendor/node-addon-api/test/async_worker_nocallback.js +13 -0
- package/vendor/node-addon-api/test/async_worker_persistent.cc +63 -0
- package/vendor/node-addon-api/test/async_worker_persistent.js +24 -0
- package/vendor/node-addon-api/test/basic_types/array.cc +40 -0
- package/vendor/node-addon-api/test/basic_types/array.js +35 -0
- package/vendor/node-addon-api/test/basic_types/boolean.cc +38 -0
- package/vendor/node-addon-api/test/basic_types/boolean.js +35 -0
- package/vendor/node-addon-api/test/basic_types/number.cc +99 -0
- package/vendor/node-addon-api/test/basic_types/number.js +114 -0
- package/vendor/node-addon-api/test/basic_types/value.cc +120 -0
- package/vendor/node-addon-api/test/basic_types/value.js +133 -0
- package/vendor/node-addon-api/test/bigint.cc +91 -0
- package/vendor/node-addon-api/test/bigint.js +53 -0
- package/vendor/node-addon-api/test/binding-swallowexcept.cc +12 -0
- package/vendor/node-addon-api/test/binding.cc +171 -0
- package/vendor/node-addon-api/test/binding.gyp +117 -0
- package/vendor/node-addon-api/test/buffer.cc +183 -0
- package/vendor/node-addon-api/test/buffer.js +69 -0
- package/vendor/node-addon-api/test/callbackscope.cc +22 -0
- package/vendor/node-addon-api/test/callbackscope.js +49 -0
- package/vendor/node-addon-api/test/common/index.js +113 -0
- package/vendor/node-addon-api/test/common/test_helper.h +61 -0
- package/vendor/node-addon-api/test/dataview/dataview.cc +48 -0
- package/vendor/node-addon-api/test/dataview/dataview.js +35 -0
- package/vendor/node-addon-api/test/dataview/dataview_read_write.cc +115 -0
- package/vendor/node-addon-api/test/dataview/dataview_read_write.js +90 -0
- package/vendor/node-addon-api/test/date.cc +44 -0
- package/vendor/node-addon-api/test/date.js +18 -0
- package/vendor/node-addon-api/test/env_cleanup.cc +88 -0
- package/vendor/node-addon-api/test/env_cleanup.js +56 -0
- package/vendor/node-addon-api/test/error.cc +287 -0
- package/vendor/node-addon-api/test/error.js +81 -0
- package/vendor/node-addon-api/test/error_handling_for_primitives.cc +13 -0
- package/vendor/node-addon-api/test/error_handling_for_primitives.js +29 -0
- package/vendor/node-addon-api/test/error_terminating_environment.js +94 -0
- package/vendor/node-addon-api/test/external.cc +81 -0
- package/vendor/node-addon-api/test/external.js +88 -0
- package/vendor/node-addon-api/test/function.cc +295 -0
- package/vendor/node-addon-api/test/function.js +121 -0
- package/vendor/node-addon-api/test/function_reference.cc +202 -0
- package/vendor/node-addon-api/test/function_reference.js +157 -0
- package/vendor/node-addon-api/test/globalObject/global_object.cc +61 -0
- package/vendor/node-addon-api/test/globalObject/global_object_delete_property.cc +31 -0
- package/vendor/node-addon-api/test/globalObject/global_object_delete_property.js +61 -0
- package/vendor/node-addon-api/test/globalObject/global_object_get_property.cc +40 -0
- package/vendor/node-addon-api/test/globalObject/global_object_get_property.js +57 -0
- package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.cc +28 -0
- package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.js +48 -0
- package/vendor/node-addon-api/test/globalObject/global_object_set_property.cc +31 -0
- package/vendor/node-addon-api/test/globalObject/global_object_set_property.js +58 -0
- package/vendor/node-addon-api/test/handlescope.cc +60 -0
- package/vendor/node-addon-api/test/handlescope.js +14 -0
- package/vendor/node-addon-api/test/index.js +136 -0
- package/vendor/node-addon-api/test/maybe/check.cc +23 -0
- package/vendor/node-addon-api/test/maybe/index.js +38 -0
- package/vendor/node-addon-api/test/memory_management.cc +17 -0
- package/vendor/node-addon-api/test/memory_management.js +9 -0
- package/vendor/node-addon-api/test/movable_callbacks.cc +23 -0
- package/vendor/node-addon-api/test/movable_callbacks.js +21 -0
- package/vendor/node-addon-api/test/name.cc +108 -0
- package/vendor/node-addon-api/test/name.js +59 -0
- package/vendor/node-addon-api/test/napi_child.js +14 -0
- package/vendor/node-addon-api/test/object/delete_property.cc +38 -0
- package/vendor/node-addon-api/test/object/delete_property.js +41 -0
- package/vendor/node-addon-api/test/object/finalizer.cc +29 -0
- package/vendor/node-addon-api/test/object/finalizer.js +28 -0
- package/vendor/node-addon-api/test/object/get_property.cc +34 -0
- package/vendor/node-addon-api/test/object/get_property.js +40 -0
- package/vendor/node-addon-api/test/object/has_own_property.cc +34 -0
- package/vendor/node-addon-api/test/object/has_own_property.js +34 -0
- package/vendor/node-addon-api/test/object/has_property.cc +38 -0
- package/vendor/node-addon-api/test/object/has_property.js +37 -0
- package/vendor/node-addon-api/test/object/object.cc +348 -0
- package/vendor/node-addon-api/test/object/object.js +217 -0
- package/vendor/node-addon-api/test/object/object_deprecated.cc +66 -0
- package/vendor/node-addon-api/test/object/object_deprecated.js +47 -0
- package/vendor/node-addon-api/test/object/object_freeze_seal.cc +25 -0
- package/vendor/node-addon-api/test/object/object_freeze_seal.js +61 -0
- package/vendor/node-addon-api/test/object/set_property.cc +37 -0
- package/vendor/node-addon-api/test/object/set_property.js +29 -0
- package/vendor/node-addon-api/test/object/subscript_operator.cc +42 -0
- package/vendor/node-addon-api/test/object/subscript_operator.js +17 -0
- package/vendor/node-addon-api/test/object_reference.cc +219 -0
- package/vendor/node-addon-api/test/object_reference.js +259 -0
- package/vendor/node-addon-api/test/objectwrap.cc +268 -0
- package/vendor/node-addon-api/test/objectwrap.js +284 -0
- package/vendor/node-addon-api/test/objectwrap_constructor_exception.cc +26 -0
- package/vendor/node-addon-api/test/objectwrap_constructor_exception.js +18 -0
- package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.cc +30 -0
- package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.js +13 -0
- package/vendor/node-addon-api/test/objectwrap_removewrap.cc +45 -0
- package/vendor/node-addon-api/test/objectwrap_removewrap.js +40 -0
- package/vendor/node-addon-api/test/objectwrap_worker_thread.js +19 -0
- package/vendor/node-addon-api/test/promise.cc +29 -0
- package/vendor/node-addon-api/test/promise.js +18 -0
- package/vendor/node-addon-api/test/reference.cc +24 -0
- package/vendor/node-addon-api/test/reference.js +14 -0
- package/vendor/node-addon-api/test/run_script.cc +56 -0
- package/vendor/node-addon-api/test/run_script.js +45 -0
- package/vendor/node-addon-api/test/symbol.cc +79 -0
- package/vendor/node-addon-api/test/symbol.js +73 -0
- package/vendor/node-addon-api/test/testUtil.js +54 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.cc +195 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.js +188 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.cc +63 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.js +12 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.cc +115 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.js +14 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.cc +26 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.js +7 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.cc +225 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.js +59 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.cc +42 -0
- package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.js +53 -0
- package/vendor/node-addon-api/test/thunking_manual.cc +140 -0
- package/vendor/node-addon-api/test/thunking_manual.js +17 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.cc +215 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.js +188 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.cc +68 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.js +12 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.cc +127 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.js +14 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.cc +28 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.js +7 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.cc +237 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.js +59 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.cc +53 -0
- package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.js +53 -0
- package/vendor/node-addon-api/test/typedarray-bigint.js +58 -0
- package/vendor/node-addon-api/test/typedarray.cc +216 -0
- package/vendor/node-addon-api/test/typedarray.js +69 -0
- package/vendor/node-addon-api/test/version_management.cc +27 -0
- package/vendor/node-addon-api/test/version_management.js +31 -0
- package/vendor/node-addon-api/tools/README.md +73 -0
- package/vendor/node-addon-api/tools/check-napi.js +100 -0
- package/vendor/node-addon-api/tools/clang-format.js +68 -0
- package/vendor/node-addon-api/tools/conversion.js +309 -0
- package/vendor/node-addon-api/tools/eslint-format.js +71 -0
- package/build/ALL_BUILD.vcxproj +0 -190
- package/build/ALL_BUILD.vcxproj.filters +0 -8
- package/build/CMakeCache.txt +0 -429
- package/build/CMakeFiles/3.23.0-rc1/CMakeASMCompiler.cmake +0 -20
- package/build/CMakeFiles/3.23.0-rc1/CMakeASM_MASMCompiler.cmake +0 -20
- package/build/CMakeFiles/3.23.0-rc1/CMakeCCompiler.cmake +0 -72
- package/build/CMakeFiles/3.23.0-rc1/CMakeCXXCompiler.cmake +0 -83
- package/build/CMakeFiles/3.23.0-rc1/CMakeDetermineCompilerABI_C.bin +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CMakeDetermineCompilerABI_CXX.bin +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CMakeRCCompiler.cmake +0 -6
- package/build/CMakeFiles/3.23.0-rc1/CMakeSystem.cmake +0 -15
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CMakeCCompilerId.c +0 -828
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CompilerIdC.exe +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CompilerIdC.vcxproj +0 -71
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CMakeCCompilerId.obj +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.exe.recipe +0 -11
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate +0 -2
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -816
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CompilerIdCXX.exe +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CompilerIdCXX.vcxproj +0 -71
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.exe.recipe +0 -11
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate +0 -2
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog +0 -0
- package/build/CMakeFiles/3.23.0-rc1/VCTargetsPath.txt +0 -1
- package/build/CMakeFiles/3.23.0-rc1/VCTargetsPath.vcxproj +0 -31
- package/build/CMakeFiles/3.23.0-rc1/x64/Debug/VCTargetsPath.recipe +0 -11
- package/build/CMakeFiles/3.23.0-rc1/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate +0 -2
- package/build/CMakeFiles/41bcd16856091d4a38fd1f71fbe2f202/generate.stamp.rule +0 -1
- package/build/CMakeFiles/CMakeError.log +0 -108
- package/build/CMakeFiles/CMakeOutput.log +0 -413
- package/build/CMakeFiles/TargetDirectories.txt +0 -4
- package/build/CMakeFiles/cmake.check_cache +0 -1
- package/build/CMakeFiles/generate.stamp +0 -1
- package/build/CMakeFiles/generate.stamp.depend +0 -28
- package/build/CMakeFiles/generate.stamp.list +0 -1
- package/build/Raylib.dir/Release/Raylib.dll.recipe +0 -14
- package/build/Raylib.dir/Release/Raylib.tlog/CL.command.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/CL.read.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/CL.write.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.command.1.tlog +0 -10
- package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.read.1.tlog +0 -27
- package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.write.1.tlog +0 -2
- package/build/Raylib.dir/Release/Raylib.tlog/Raylib.lastbuildstate +0 -2
- package/build/Raylib.dir/Release/Raylib.tlog/Raylib.write.1u.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/link.command.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/link.read.1.tlog +0 -0
- package/build/Raylib.dir/Release/Raylib.tlog/link.write.1.tlog +0 -0
- package/build/Raylib.dir/Release/raudio.obj +0 -0
- package/build/Raylib.dir/Release/rcore.obj +0 -0
- package/build/Raylib.dir/Release/rglfw.obj +0 -0
- package/build/Raylib.dir/Release/rmodels.obj +0 -0
- package/build/Raylib.dir/Release/rshapes.obj +0 -0
- package/build/Raylib.dir/Release/rtext.obj +0 -0
- package/build/Raylib.dir/Release/rtextures.obj +0 -0
- package/build/Raylib.dir/Release/utils.obj +0 -0
- package/build/Raylib.vcxproj +0 -358
- package/build/Raylib.vcxproj.filters +0 -37
- package/build/Release/Raylib.dll +0 -0
- package/build/Release/Raylib.exp +0 -0
- package/build/Release/Raylib.lib +0 -0
- package/build/Release/koffi.exp +0 -0
- package/build/Release/koffi.lib +0 -0
- package/build/Release/koffi.node +0 -0
- package/build/ZERO_CHECK.vcxproj +0 -176
- package/build/ZERO_CHECK.vcxproj.filters +0 -13
- package/build/cmake_install.cmake +0 -44
- package/build/koffi.dir/Release/call_arm64.obj +0 -0
- package/build/koffi.dir/Release/call_x64_sysv.obj +0 -0
- package/build/koffi.dir/Release/call_x64_win.obj +0 -0
- package/build/koffi.dir/Release/call_x64_win_fwd.obj +0 -0
- package/build/koffi.dir/Release/call_x86.obj +0 -0
- package/build/koffi.dir/Release/ffi.obj +0 -0
- package/build/koffi.dir/Release/koffi.node.recipe +0 -14
- package/build/koffi.dir/Release/koffi.tlog/CL.command.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/CL.read.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/CL.write.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/CustomBuild.command.1.tlog +0 -10
- package/build/koffi.dir/Release/koffi.tlog/CustomBuild.read.1.tlog +0 -27
- package/build/koffi.dir/Release/koffi.tlog/CustomBuild.write.1.tlog +0 -2
- package/build/koffi.dir/Release/koffi.tlog/Masm.read.1u.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/Masm.write.1u.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/koffi.lastbuildstate +0 -2
- package/build/koffi.dir/Release/koffi.tlog/koffi.write.1u.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/link.command.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/link.read.1.tlog +0 -0
- package/build/koffi.dir/Release/koffi.tlog/link.write.1.tlog +0 -0
- package/build/koffi.dir/Release/libcc.obj +0 -0
- package/build/koffi.dir/Release/util.obj +0 -0
- package/build/koffi.dir/Release/win_delay_load_hook.obj +0 -0
- package/build/koffi.sln +0 -67
- package/build/koffi.vcxproj +0 -363
- package/build/koffi.vcxproj.filters +0 -40
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.recipe +0 -20
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/ALL_BUILD.lastbuildstate +0 -2
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.command.1.tlog +0 -10
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.read.1.tlog +0 -27
- package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.write.1.tlog +0 -2
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.recipe +0 -11
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog +0 -10
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog +0 -28
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog +0 -2
- package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate +0 -2
package/build/ZERO_CHECK.vcxproj
DELETED
|
@@ -1,176 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<PropertyGroup>
|
|
4
|
-
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
5
|
-
</PropertyGroup>
|
|
6
|
-
<PropertyGroup>
|
|
7
|
-
<ResolveNugetPackages>false</ResolveNugetPackages>
|
|
8
|
-
</PropertyGroup>
|
|
9
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
10
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
11
|
-
<Configuration>Debug</Configuration>
|
|
12
|
-
<Platform>x64</Platform>
|
|
13
|
-
</ProjectConfiguration>
|
|
14
|
-
<ProjectConfiguration Include="Release|x64">
|
|
15
|
-
<Configuration>Release</Configuration>
|
|
16
|
-
<Platform>x64</Platform>
|
|
17
|
-
</ProjectConfiguration>
|
|
18
|
-
<ProjectConfiguration Include="MinSizeRel|x64">
|
|
19
|
-
<Configuration>MinSizeRel</Configuration>
|
|
20
|
-
<Platform>x64</Platform>
|
|
21
|
-
</ProjectConfiguration>
|
|
22
|
-
<ProjectConfiguration Include="RelWithDebInfo|x64">
|
|
23
|
-
<Configuration>RelWithDebInfo</Configuration>
|
|
24
|
-
<Platform>x64</Platform>
|
|
25
|
-
</ProjectConfiguration>
|
|
26
|
-
</ItemGroup>
|
|
27
|
-
<PropertyGroup Label="Globals">
|
|
28
|
-
<ProjectGuid>{88D8D3DA-3A05-3927-9D00-34B7FC393341}</ProjectGuid>
|
|
29
|
-
<Keyword>Win32Proj</Keyword>
|
|
30
|
-
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
|
|
31
|
-
<Platform>x64</Platform>
|
|
32
|
-
<ProjectName>ZERO_CHECK</ProjectName>
|
|
33
|
-
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
|
|
34
|
-
</PropertyGroup>
|
|
35
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
36
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
37
|
-
<ConfigurationType>Utility</ConfigurationType>
|
|
38
|
-
<CharacterSet>MultiByte</CharacterSet>
|
|
39
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
40
|
-
</PropertyGroup>
|
|
41
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
42
|
-
<ConfigurationType>Utility</ConfigurationType>
|
|
43
|
-
<CharacterSet>MultiByte</CharacterSet>
|
|
44
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'" Label="Configuration">
|
|
47
|
-
<ConfigurationType>Utility</ConfigurationType>
|
|
48
|
-
<CharacterSet>MultiByte</CharacterSet>
|
|
49
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
50
|
-
</PropertyGroup>
|
|
51
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'" Label="Configuration">
|
|
52
|
-
<ConfigurationType>Utility</ConfigurationType>
|
|
53
|
-
<CharacterSet>MultiByte</CharacterSet>
|
|
54
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
55
|
-
</PropertyGroup>
|
|
56
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
57
|
-
<ImportGroup Label="ExtensionSettings">
|
|
58
|
-
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
|
59
|
-
</ImportGroup>
|
|
60
|
-
<ImportGroup Label="PropertySheets">
|
|
61
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
62
|
-
</ImportGroup>
|
|
63
|
-
<PropertyGroup Label="UserMacros" />
|
|
64
|
-
<PropertyGroup>
|
|
65
|
-
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
|
66
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
67
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
68
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
69
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
70
|
-
</PropertyGroup>
|
|
71
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
72
|
-
<Midl>
|
|
73
|
-
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
74
|
-
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
75
|
-
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
76
|
-
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
77
|
-
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
78
|
-
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
79
|
-
</Midl>
|
|
80
|
-
</ItemDefinitionGroup>
|
|
81
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
82
|
-
<Midl>
|
|
83
|
-
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
84
|
-
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
85
|
-
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
86
|
-
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
87
|
-
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
88
|
-
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
89
|
-
</Midl>
|
|
90
|
-
</ItemDefinitionGroup>
|
|
91
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">
|
|
92
|
-
<Midl>
|
|
93
|
-
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
94
|
-
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
95
|
-
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
96
|
-
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
97
|
-
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
98
|
-
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
99
|
-
</Midl>
|
|
100
|
-
</ItemDefinitionGroup>
|
|
101
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">
|
|
102
|
-
<Midl>
|
|
103
|
-
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
104
|
-
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
105
|
-
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
106
|
-
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
107
|
-
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
108
|
-
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
109
|
-
</Midl>
|
|
110
|
-
</ItemDefinitionGroup>
|
|
111
|
-
<ItemGroup>
|
|
112
|
-
<CustomBuild Include="C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\41bcd16856091d4a38fd1f71fbe2f202\generate.stamp.rule">
|
|
113
|
-
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
114
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Checking Build System</Message>
|
|
115
|
-
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
|
116
|
-
"C:\Program Files\CMake\bin\cmake.exe" -SC:/Users/Niels/Code/luigi/koffi -BC:/Users/Niels/Code/luigi/koffi/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/Niels/Code/luigi/koffi/build/koffi.sln
|
|
117
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
118
|
-
:cmEnd
|
|
119
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
120
|
-
:cmErrorLevel
|
|
121
|
-
exit /b %1
|
|
122
|
-
:cmDone
|
|
123
|
-
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
124
|
-
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeASMInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeASM_MASMInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-ASM.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\WindowsPaths.cmake;C:\Users\Niels\Code\luigi\koffi\CMakeLists.txt;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeASMCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeASM_MASMCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeCCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeCXXCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeRCCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeSystem.cmake;%(AdditionalInputs)</AdditionalInputs>
|
|
125
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
|
|
126
|
-
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
|
127
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Checking Build System</Message>
|
|
128
|
-
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
|
129
|
-
"C:\Program Files\CMake\bin\cmake.exe" -SC:/Users/Niels/Code/luigi/koffi -BC:/Users/Niels/Code/luigi/koffi/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/Niels/Code/luigi/koffi/build/koffi.sln
|
|
130
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
131
|
-
:cmEnd
|
|
132
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
133
|
-
:cmErrorLevel
|
|
134
|
-
exit /b %1
|
|
135
|
-
:cmDone
|
|
136
|
-
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
137
|
-
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeASMInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeASM_MASMInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-ASM.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\WindowsPaths.cmake;C:\Users\Niels\Code\luigi\koffi\CMakeLists.txt;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeASMCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeASM_MASMCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeCCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeCXXCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeRCCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeSystem.cmake;%(AdditionalInputs)</AdditionalInputs>
|
|
138
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
|
|
139
|
-
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
|
140
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">Checking Build System</Message>
|
|
141
|
-
<Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">setlocal
|
|
142
|
-
"C:\Program Files\CMake\bin\cmake.exe" -SC:/Users/Niels/Code/luigi/koffi -BC:/Users/Niels/Code/luigi/koffi/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/Niels/Code/luigi/koffi/build/koffi.sln
|
|
143
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
144
|
-
:cmEnd
|
|
145
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
146
|
-
:cmErrorLevel
|
|
147
|
-
exit /b %1
|
|
148
|
-
:cmDone
|
|
149
|
-
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
150
|
-
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeASMInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeASM_MASMInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-ASM.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\WindowsPaths.cmake;C:\Users\Niels\Code\luigi\koffi\CMakeLists.txt;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeASMCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeASM_MASMCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeCCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeCXXCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeRCCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeSystem.cmake;%(AdditionalInputs)</AdditionalInputs>
|
|
151
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
|
|
152
|
-
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">false</LinkObjects>
|
|
153
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">Checking Build System</Message>
|
|
154
|
-
<Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">setlocal
|
|
155
|
-
"C:\Program Files\CMake\bin\cmake.exe" -SC:/Users/Niels/Code/luigi/koffi -BC:/Users/Niels/Code/luigi/koffi/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/Niels/Code/luigi/koffi/build/koffi.sln
|
|
156
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
157
|
-
:cmEnd
|
|
158
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
159
|
-
:cmErrorLevel
|
|
160
|
-
exit /b %1
|
|
161
|
-
:cmDone
|
|
162
|
-
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
163
|
-
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeASMInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeASM_MASMInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeInitializeConfigs.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-ASM.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.23\Modules\Platform\WindowsPaths.cmake;C:\Users\Niels\Code\luigi\koffi\CMakeLists.txt;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeASMCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeASM_MASMCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeCCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeCXXCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeRCCompiler.cmake;C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\3.23.0-rc1\CMakeSystem.cmake;%(AdditionalInputs)</AdditionalInputs>
|
|
164
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
|
|
165
|
-
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">false</LinkObjects>
|
|
166
|
-
</CustomBuild>
|
|
167
|
-
</ItemGroup>
|
|
168
|
-
<ItemGroup>
|
|
169
|
-
</ItemGroup>
|
|
170
|
-
<ItemGroup>
|
|
171
|
-
</ItemGroup>
|
|
172
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
173
|
-
<ImportGroup Label="ExtensionTargets">
|
|
174
|
-
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
|
175
|
-
</ImportGroup>
|
|
176
|
-
</Project>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<CustomBuild Include="C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\41bcd16856091d4a38fd1f71fbe2f202\generate.stamp.rule">
|
|
5
|
-
<Filter>CMake Rules</Filter>
|
|
6
|
-
</CustomBuild>
|
|
7
|
-
</ItemGroup>
|
|
8
|
-
<ItemGroup>
|
|
9
|
-
<Filter Include="CMake Rules">
|
|
10
|
-
<UniqueIdentifier>{29A83EF1-73E7-36D1-AB1B-D90302EA1288}</UniqueIdentifier>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
</Project>
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# Install script for directory: C:/Users/Niels/Code/luigi/koffi
|
|
2
|
-
|
|
3
|
-
# Set the install prefix
|
|
4
|
-
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
|
5
|
-
set(CMAKE_INSTALL_PREFIX "C:/Program Files/Luigi")
|
|
6
|
-
endif()
|
|
7
|
-
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
|
8
|
-
|
|
9
|
-
# Set the install configuration name.
|
|
10
|
-
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
|
11
|
-
if(BUILD_TYPE)
|
|
12
|
-
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
|
13
|
-
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
|
14
|
-
else()
|
|
15
|
-
set(CMAKE_INSTALL_CONFIG_NAME "Release")
|
|
16
|
-
endif()
|
|
17
|
-
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
|
18
|
-
endif()
|
|
19
|
-
|
|
20
|
-
# Set the component getting installed.
|
|
21
|
-
if(NOT CMAKE_INSTALL_COMPONENT)
|
|
22
|
-
if(COMPONENT)
|
|
23
|
-
message(STATUS "Install component: \"${COMPONENT}\"")
|
|
24
|
-
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
|
25
|
-
else()
|
|
26
|
-
set(CMAKE_INSTALL_COMPONENT)
|
|
27
|
-
endif()
|
|
28
|
-
endif()
|
|
29
|
-
|
|
30
|
-
# Is this installation the result of a crosscompile?
|
|
31
|
-
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
|
32
|
-
set(CMAKE_CROSSCOMPILING "FALSE")
|
|
33
|
-
endif()
|
|
34
|
-
|
|
35
|
-
if(CMAKE_INSTALL_COMPONENT)
|
|
36
|
-
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
|
37
|
-
else()
|
|
38
|
-
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
|
39
|
-
endif()
|
|
40
|
-
|
|
41
|
-
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
|
42
|
-
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
|
43
|
-
file(WRITE "C:/Users/Niels/Code/luigi/koffi/build/${CMAKE_INSTALL_MANIFEST}"
|
|
44
|
-
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project>
|
|
3
|
-
<ProjectOutputs>
|
|
4
|
-
<ProjectOutput>
|
|
5
|
-
<FullPath>C:\Users\Niels\Code\luigi\koffi\build\x64\Release\ZERO_CHECK</FullPath>
|
|
6
|
-
</ProjectOutput>
|
|
7
|
-
<ProjectOutput>
|
|
8
|
-
<FullPath>C:\Users\Niels\Code\luigi\koffi\build\Release\koffi.node</FullPath>
|
|
9
|
-
</ProjectOutput>
|
|
10
|
-
</ProjectOutputs>
|
|
11
|
-
<ContentFiles />
|
|
12
|
-
<SatelliteDlls />
|
|
13
|
-
<NonRecipeFileRefs />
|
|
14
|
-
</Project>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
^C:\USERS\NIELS\CODE\LUIGI\KOFFI\CMAKELISTS.TXT
|
|
2
|
-
setlocal
|
|
3
|
-
"C:\Program Files\CMake\bin\cmake.exe" -SC:/Users/Niels/Code/luigi/koffi -BC:/Users/Niels/Code/luigi/koffi/build --check-stamp-file C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/generate.stamp
|
|
4
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
5
|
-
:cmEnd
|
|
6
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
7
|
-
:cmErrorLevel
|
|
8
|
-
exit /b %1
|
|
9
|
-
:cmDone
|
|
10
|
-
if %errorlevel% neq 0 goto :VCEnd
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
^C:\USERS\NIELS\CODE\LUIGI\KOFFI\CMAKELISTS.TXT
|
|
2
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEASMINFORMATION.CMAKE
|
|
3
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEASM_MASMINFORMATION.CMAKE
|
|
4
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECINFORMATION.CMAKE
|
|
5
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECXXINFORMATION.CMAKE
|
|
6
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECOMMONLANGUAGEINCLUDE.CMAKE
|
|
7
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEGENERICSYSTEM.CMAKE
|
|
8
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEINITIALIZECONFIGS.CMAKE
|
|
9
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKELANGUAGEINFORMATION.CMAKE
|
|
10
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKERCINFORMATION.CMAKE
|
|
11
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKESYSTEMSPECIFICINFORMATION.CMAKE
|
|
12
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKESYSTEMSPECIFICINITIALIZE.CMAKE
|
|
13
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\CMAKECOMMONCOMPILERMACROS.CMAKE
|
|
14
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-ASM.CMAKE
|
|
15
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-C.CMAKE
|
|
16
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-CXX.CMAKE
|
|
17
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC-C.CMAKE
|
|
18
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC-CXX.CMAKE
|
|
19
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC.CMAKE
|
|
20
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS.CMAKE
|
|
21
|
-
C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWSPATHS.CMAKE
|
|
22
|
-
C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKEASMCOMPILER.CMAKE
|
|
23
|
-
C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKEASM_MASMCOMPILER.CMAKE
|
|
24
|
-
C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKECCOMPILER.CMAKE
|
|
25
|
-
C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKECXXCOMPILER.CMAKE
|
|
26
|
-
C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKERCCOMPILER.CMAKE
|
|
27
|
-
C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKESYSTEM.CMAKE
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/build/koffi.sln
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
-
# Visual Studio Version 16
|
|
4
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{5BE56245-76AE-3E31-B7E8-D2E7C4DF6895}"
|
|
5
|
-
ProjectSection(ProjectDependencies) = postProject
|
|
6
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699} = {1144E8A1-9651-34E9-B43F-5C6B60F11699}
|
|
7
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341} = {88D8D3DA-3A05-3927-9D00-34B7FC393341}
|
|
8
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172} = {CFDA8F0F-5168-3E8E-8779-698AF1761172}
|
|
9
|
-
EndProjectSection
|
|
10
|
-
EndProject
|
|
11
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Raylib", "Raylib.vcxproj", "{1144E8A1-9651-34E9-B43F-5C6B60F11699}"
|
|
12
|
-
ProjectSection(ProjectDependencies) = postProject
|
|
13
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341} = {88D8D3DA-3A05-3927-9D00-34B7FC393341}
|
|
14
|
-
EndProjectSection
|
|
15
|
-
EndProject
|
|
16
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "ZERO_CHECK.vcxproj", "{88D8D3DA-3A05-3927-9D00-34B7FC393341}"
|
|
17
|
-
ProjectSection(ProjectDependencies) = postProject
|
|
18
|
-
EndProjectSection
|
|
19
|
-
EndProject
|
|
20
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "koffi", "koffi.vcxproj", "{CFDA8F0F-5168-3E8E-8779-698AF1761172}"
|
|
21
|
-
ProjectSection(ProjectDependencies) = postProject
|
|
22
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341} = {88D8D3DA-3A05-3927-9D00-34B7FC393341}
|
|
23
|
-
EndProjectSection
|
|
24
|
-
EndProject
|
|
25
|
-
Global
|
|
26
|
-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
27
|
-
Debug|x64 = Debug|x64
|
|
28
|
-
Release|x64 = Release|x64
|
|
29
|
-
MinSizeRel|x64 = MinSizeRel|x64
|
|
30
|
-
RelWithDebInfo|x64 = RelWithDebInfo|x64
|
|
31
|
-
EndGlobalSection
|
|
32
|
-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
33
|
-
{5BE56245-76AE-3E31-B7E8-D2E7C4DF6895}.Debug|x64.ActiveCfg = Debug|x64
|
|
34
|
-
{5BE56245-76AE-3E31-B7E8-D2E7C4DF6895}.Release|x64.ActiveCfg = Release|x64
|
|
35
|
-
{5BE56245-76AE-3E31-B7E8-D2E7C4DF6895}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
|
|
36
|
-
{5BE56245-76AE-3E31-B7E8-D2E7C4DF6895}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
|
|
37
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699}.Debug|x64.ActiveCfg = Debug|x64
|
|
38
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699}.Debug|x64.Build.0 = Debug|x64
|
|
39
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699}.Release|x64.ActiveCfg = Release|x64
|
|
40
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699}.Release|x64.Build.0 = Release|x64
|
|
41
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
|
|
42
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
|
|
43
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
|
|
44
|
-
{1144E8A1-9651-34E9-B43F-5C6B60F11699}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
|
|
45
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341}.Debug|x64.ActiveCfg = Debug|x64
|
|
46
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341}.Debug|x64.Build.0 = Debug|x64
|
|
47
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341}.Release|x64.ActiveCfg = Release|x64
|
|
48
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341}.Release|x64.Build.0 = Release|x64
|
|
49
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
|
|
50
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
|
|
51
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
|
|
52
|
-
{88D8D3DA-3A05-3927-9D00-34B7FC393341}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
|
|
53
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172}.Debug|x64.ActiveCfg = Debug|x64
|
|
54
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172}.Debug|x64.Build.0 = Debug|x64
|
|
55
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172}.Release|x64.ActiveCfg = Release|x64
|
|
56
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172}.Release|x64.Build.0 = Release|x64
|
|
57
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64
|
|
58
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172}.MinSizeRel|x64.Build.0 = MinSizeRel|x64
|
|
59
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64
|
|
60
|
-
{CFDA8F0F-5168-3E8E-8779-698AF1761172}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64
|
|
61
|
-
EndGlobalSection
|
|
62
|
-
GlobalSection(ExtensibilityGlobals) = postSolution
|
|
63
|
-
SolutionGuid = {506C0A8B-2D6E-333B-AC82-0C38716ACB11}
|
|
64
|
-
EndGlobalSection
|
|
65
|
-
GlobalSection(ExtensibilityAddIns) = postSolution
|
|
66
|
-
EndGlobalSection
|
|
67
|
-
EndGlobal
|