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/Raylib.vcxproj
DELETED
|
@@ -1,358 +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
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
7
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
8
|
-
<Configuration>Debug</Configuration>
|
|
9
|
-
<Platform>x64</Platform>
|
|
10
|
-
</ProjectConfiguration>
|
|
11
|
-
<ProjectConfiguration Include="Release|x64">
|
|
12
|
-
<Configuration>Release</Configuration>
|
|
13
|
-
<Platform>x64</Platform>
|
|
14
|
-
</ProjectConfiguration>
|
|
15
|
-
<ProjectConfiguration Include="MinSizeRel|x64">
|
|
16
|
-
<Configuration>MinSizeRel</Configuration>
|
|
17
|
-
<Platform>x64</Platform>
|
|
18
|
-
</ProjectConfiguration>
|
|
19
|
-
<ProjectConfiguration Include="RelWithDebInfo|x64">
|
|
20
|
-
<Configuration>RelWithDebInfo</Configuration>
|
|
21
|
-
<Platform>x64</Platform>
|
|
22
|
-
</ProjectConfiguration>
|
|
23
|
-
</ItemGroup>
|
|
24
|
-
<PropertyGroup Label="Globals">
|
|
25
|
-
<ProjectGuid>{1144E8A1-9651-34E9-B43F-5C6B60F11699}</ProjectGuid>
|
|
26
|
-
<Keyword>Win32Proj</Keyword>
|
|
27
|
-
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
|
|
28
|
-
<Platform>x64</Platform>
|
|
29
|
-
<ProjectName>Raylib</ProjectName>
|
|
30
|
-
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
|
|
31
|
-
</PropertyGroup>
|
|
32
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
33
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
34
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
35
|
-
<CharacterSet>MultiByte</CharacterSet>
|
|
36
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
37
|
-
</PropertyGroup>
|
|
38
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
39
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
40
|
-
<CharacterSet>MultiByte</CharacterSet>
|
|
41
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
42
|
-
</PropertyGroup>
|
|
43
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'" Label="Configuration">
|
|
44
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
45
|
-
<CharacterSet>MultiByte</CharacterSet>
|
|
46
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
47
|
-
</PropertyGroup>
|
|
48
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'" Label="Configuration">
|
|
49
|
-
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
50
|
-
<CharacterSet>MultiByte</CharacterSet>
|
|
51
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
52
|
-
</PropertyGroup>
|
|
53
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
54
|
-
<ImportGroup Label="ExtensionSettings">
|
|
55
|
-
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
|
56
|
-
</ImportGroup>
|
|
57
|
-
<ImportGroup Label="PropertySheets">
|
|
58
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
59
|
-
</ImportGroup>
|
|
60
|
-
<PropertyGroup Label="UserMacros" />
|
|
61
|
-
<PropertyGroup>
|
|
62
|
-
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
|
63
|
-
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">C:\Users\Niels\Code\luigi\koffi\build\Debug\</OutDir>
|
|
64
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Raylib.dir\Debug\</IntDir>
|
|
65
|
-
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Raylib</TargetName>
|
|
66
|
-
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.dll</TargetExt>
|
|
67
|
-
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
|
|
68
|
-
<GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</GenerateManifest>
|
|
69
|
-
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">C:\Users\Niels\Code\luigi\koffi\build\Release\</OutDir>
|
|
70
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Raylib.dir\Release\</IntDir>
|
|
71
|
-
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Raylib</TargetName>
|
|
72
|
-
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'">.dll</TargetExt>
|
|
73
|
-
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
|
|
74
|
-
<GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</GenerateManifest>
|
|
75
|
-
<OutDir Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">C:\Users\Niels\Code\luigi\koffi\build\MinSizeRel\</OutDir>
|
|
76
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">Raylib.dir\MinSizeRel\</IntDir>
|
|
77
|
-
<TargetName Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">Raylib</TargetName>
|
|
78
|
-
<TargetExt Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">.dll</TargetExt>
|
|
79
|
-
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">false</LinkIncremental>
|
|
80
|
-
<GenerateManifest Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">true</GenerateManifest>
|
|
81
|
-
<OutDir Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">C:\Users\Niels\Code\luigi\koffi\build\RelWithDebInfo\</OutDir>
|
|
82
|
-
<IntDir Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">Raylib.dir\RelWithDebInfo\</IntDir>
|
|
83
|
-
<TargetName Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">Raylib</TargetName>
|
|
84
|
-
<TargetExt Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">.dll</TargetExt>
|
|
85
|
-
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">true</LinkIncremental>
|
|
86
|
-
<GenerateManifest Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">true</GenerateManifest>
|
|
87
|
-
</PropertyGroup>
|
|
88
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
89
|
-
<ClCompile>
|
|
90
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
91
|
-
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
|
|
92
|
-
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
93
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
94
|
-
<DisableSpecificWarnings>4244;4305</DisableSpecificWarnings>
|
|
95
|
-
<ExceptionHandling>
|
|
96
|
-
</ExceptionHandling>
|
|
97
|
-
<InlineFunctionExpansion>Disabled</InlineFunctionExpansion>
|
|
98
|
-
<Optimization>Disabled</Optimization>
|
|
99
|
-
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
100
|
-
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
101
|
-
<UseFullPaths>false</UseFullPaths>
|
|
102
|
-
<WarningLevel>Level3</WarningLevel>
|
|
103
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="Debug";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
104
|
-
<ObjectFileName>$(IntDir)</ObjectFileName>
|
|
105
|
-
</ClCompile>
|
|
106
|
-
<ResourceCompile>
|
|
107
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR=\"Debug\";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
108
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
109
|
-
</ResourceCompile>
|
|
110
|
-
<MASM>
|
|
111
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="Debug";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
112
|
-
<IncludePaths>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(IncludePaths)</IncludePaths>
|
|
113
|
-
</MASM>
|
|
114
|
-
<Midl>
|
|
115
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
116
|
-
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
117
|
-
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
118
|
-
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
119
|
-
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
120
|
-
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
121
|
-
</Midl>
|
|
122
|
-
<Link>
|
|
123
|
-
<AdditionalDependencies>winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
|
|
124
|
-
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
125
|
-
<DelayLoadDLLs>NODE.EXE</DelayLoadDLLs>
|
|
126
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
127
|
-
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
|
128
|
-
<ImportLibrary>C:/Users/Niels/Code/luigi/koffi/build/Debug/Raylib.lib</ImportLibrary>
|
|
129
|
-
<ProgramDataBaseFile>C:/Users/Niels/Code/luigi/koffi/build/Debug/Raylib.pdb</ProgramDataBaseFile>
|
|
130
|
-
<SubSystem>Console</SubSystem>
|
|
131
|
-
</Link>
|
|
132
|
-
<ProjectReference>
|
|
133
|
-
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
|
134
|
-
</ProjectReference>
|
|
135
|
-
</ItemDefinitionGroup>
|
|
136
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
137
|
-
<ClCompile>
|
|
138
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
139
|
-
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
|
|
140
|
-
<DisableSpecificWarnings>4244;4305</DisableSpecificWarnings>
|
|
141
|
-
<ExceptionHandling>
|
|
142
|
-
</ExceptionHandling>
|
|
143
|
-
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
|
144
|
-
<Optimization>MaxSpeed</Optimization>
|
|
145
|
-
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
146
|
-
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
147
|
-
<UseFullPaths>false</UseFullPaths>
|
|
148
|
-
<WarningLevel>Level3</WarningLevel>
|
|
149
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="Release";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
150
|
-
<ObjectFileName>$(IntDir)</ObjectFileName>
|
|
151
|
-
<DebugInformationFormat>
|
|
152
|
-
</DebugInformationFormat>
|
|
153
|
-
</ClCompile>
|
|
154
|
-
<ResourceCompile>
|
|
155
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR=\"Release\";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
156
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
157
|
-
</ResourceCompile>
|
|
158
|
-
<MASM>
|
|
159
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="Release";Raylib_EXPORTS;</PreprocessorDefinitions>
|
|
160
|
-
<IncludePaths>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(IncludePaths)</IncludePaths>
|
|
161
|
-
</MASM>
|
|
162
|
-
<Midl>
|
|
163
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
164
|
-
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
165
|
-
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
166
|
-
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
167
|
-
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
168
|
-
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
169
|
-
</Midl>
|
|
170
|
-
<Link>
|
|
171
|
-
<AdditionalDependencies>winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
|
|
172
|
-
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
173
|
-
<DelayLoadDLLs>NODE.EXE</DelayLoadDLLs>
|
|
174
|
-
<GenerateDebugInformation>false</GenerateDebugInformation>
|
|
175
|
-
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
|
176
|
-
<ImportLibrary>C:/Users/Niels/Code/luigi/koffi/build/Release/Raylib.lib</ImportLibrary>
|
|
177
|
-
<ProgramDataBaseFile>C:/Users/Niels/Code/luigi/koffi/build/Release/Raylib.pdb</ProgramDataBaseFile>
|
|
178
|
-
<SubSystem>Console</SubSystem>
|
|
179
|
-
</Link>
|
|
180
|
-
<ProjectReference>
|
|
181
|
-
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
|
182
|
-
</ProjectReference>
|
|
183
|
-
</ItemDefinitionGroup>
|
|
184
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">
|
|
185
|
-
<ClCompile>
|
|
186
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
187
|
-
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
|
|
188
|
-
<DisableSpecificWarnings>4244;4305</DisableSpecificWarnings>
|
|
189
|
-
<ExceptionHandling>
|
|
190
|
-
</ExceptionHandling>
|
|
191
|
-
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
|
192
|
-
<Optimization>MinSpace</Optimization>
|
|
193
|
-
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
194
|
-
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
195
|
-
<UseFullPaths>false</UseFullPaths>
|
|
196
|
-
<WarningLevel>Level3</WarningLevel>
|
|
197
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="MinSizeRel";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
198
|
-
<ObjectFileName>$(IntDir)</ObjectFileName>
|
|
199
|
-
<DebugInformationFormat>
|
|
200
|
-
</DebugInformationFormat>
|
|
201
|
-
</ClCompile>
|
|
202
|
-
<ResourceCompile>
|
|
203
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR=\"MinSizeRel\";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
204
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
205
|
-
</ResourceCompile>
|
|
206
|
-
<MASM>
|
|
207
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="MinSizeRel";Raylib_EXPORTS;</PreprocessorDefinitions>
|
|
208
|
-
<IncludePaths>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(IncludePaths)</IncludePaths>
|
|
209
|
-
</MASM>
|
|
210
|
-
<Midl>
|
|
211
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
212
|
-
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
213
|
-
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
214
|
-
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
215
|
-
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
216
|
-
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
217
|
-
</Midl>
|
|
218
|
-
<Link>
|
|
219
|
-
<AdditionalDependencies>winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
|
|
220
|
-
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
221
|
-
<DelayLoadDLLs>NODE.EXE</DelayLoadDLLs>
|
|
222
|
-
<GenerateDebugInformation>false</GenerateDebugInformation>
|
|
223
|
-
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
|
224
|
-
<ImportLibrary>C:/Users/Niels/Code/luigi/koffi/build/MinSizeRel/Raylib.lib</ImportLibrary>
|
|
225
|
-
<ProgramDataBaseFile>C:/Users/Niels/Code/luigi/koffi/build/MinSizeRel/Raylib.pdb</ProgramDataBaseFile>
|
|
226
|
-
<SubSystem>Console</SubSystem>
|
|
227
|
-
</Link>
|
|
228
|
-
<ProjectReference>
|
|
229
|
-
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
|
230
|
-
</ProjectReference>
|
|
231
|
-
</ItemDefinitionGroup>
|
|
232
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">
|
|
233
|
-
<ClCompile>
|
|
234
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
235
|
-
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
|
|
236
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
237
|
-
<DisableSpecificWarnings>4244;4305</DisableSpecificWarnings>
|
|
238
|
-
<ExceptionHandling>
|
|
239
|
-
</ExceptionHandling>
|
|
240
|
-
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
|
241
|
-
<Optimization>MaxSpeed</Optimization>
|
|
242
|
-
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
243
|
-
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
244
|
-
<UseFullPaths>false</UseFullPaths>
|
|
245
|
-
<WarningLevel>Level3</WarningLevel>
|
|
246
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="RelWithDebInfo";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
247
|
-
<ObjectFileName>$(IntDir)</ObjectFileName>
|
|
248
|
-
</ClCompile>
|
|
249
|
-
<ResourceCompile>
|
|
250
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR=\"RelWithDebInfo\";Raylib_EXPORTS</PreprocessorDefinitions>
|
|
251
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
252
|
-
</ResourceCompile>
|
|
253
|
-
<MASM>
|
|
254
|
-
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;PLATFORM_DESKTOP;GRAPHICS_API_OPENGL_21;BUILD_LIBTYPE_SHARED;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="RelWithDebInfo";Raylib_EXPORTS;</PreprocessorDefinitions>
|
|
255
|
-
<IncludePaths>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(IncludePaths)</IncludePaths>
|
|
256
|
-
</MASM>
|
|
257
|
-
<Midl>
|
|
258
|
-
<AdditionalIncludeDirectories>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\raylib\src\external\glfw\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
259
|
-
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
260
|
-
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
261
|
-
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
262
|
-
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
263
|
-
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
264
|
-
</Midl>
|
|
265
|
-
<Link>
|
|
266
|
-
<AdditionalDependencies>winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
|
|
267
|
-
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
268
|
-
<DelayLoadDLLs>NODE.EXE</DelayLoadDLLs>
|
|
269
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
270
|
-
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
|
271
|
-
<ImportLibrary>C:/Users/Niels/Code/luigi/koffi/build/RelWithDebInfo/Raylib.lib</ImportLibrary>
|
|
272
|
-
<ProgramDataBaseFile>C:/Users/Niels/Code/luigi/koffi/build/RelWithDebInfo/Raylib.pdb</ProgramDataBaseFile>
|
|
273
|
-
<SubSystem>Console</SubSystem>
|
|
274
|
-
</Link>
|
|
275
|
-
<ProjectReference>
|
|
276
|
-
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
|
277
|
-
</ProjectReference>
|
|
278
|
-
</ItemDefinitionGroup>
|
|
279
|
-
<ItemGroup>
|
|
280
|
-
<CustomBuild Include="C:\Users\Niels\Code\luigi\koffi\CMakeLists.txt">
|
|
281
|
-
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
282
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</Message>
|
|
283
|
-
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
|
284
|
-
"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
|
|
285
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
286
|
-
:cmEnd
|
|
287
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
288
|
-
:cmErrorLevel
|
|
289
|
-
exit /b %1
|
|
290
|
-
:cmDone
|
|
291
|
-
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
292
|
-
<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\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>
|
|
293
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
|
|
294
|
-
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
|
295
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</Message>
|
|
296
|
-
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
|
297
|
-
"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
|
|
298
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
299
|
-
:cmEnd
|
|
300
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
301
|
-
:cmErrorLevel
|
|
302
|
-
exit /b %1
|
|
303
|
-
:cmDone
|
|
304
|
-
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
305
|
-
<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\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>
|
|
306
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
|
|
307
|
-
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
|
308
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</Message>
|
|
309
|
-
<Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">setlocal
|
|
310
|
-
"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
|
|
311
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
312
|
-
:cmEnd
|
|
313
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
314
|
-
:cmErrorLevel
|
|
315
|
-
exit /b %1
|
|
316
|
-
:cmDone
|
|
317
|
-
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
318
|
-
<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\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>
|
|
319
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
|
|
320
|
-
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">false</LinkObjects>
|
|
321
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</Message>
|
|
322
|
-
<Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">setlocal
|
|
323
|
-
"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
|
|
324
|
-
if %errorlevel% neq 0 goto :cmEnd
|
|
325
|
-
:cmEnd
|
|
326
|
-
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
327
|
-
:cmErrorLevel
|
|
328
|
-
exit /b %1
|
|
329
|
-
:cmDone
|
|
330
|
-
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
331
|
-
<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\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>
|
|
332
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
|
|
333
|
-
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">false</LinkObjects>
|
|
334
|
-
</CustomBuild>
|
|
335
|
-
</ItemGroup>
|
|
336
|
-
<ItemGroup>
|
|
337
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rcore.c" />
|
|
338
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rshapes.c" />
|
|
339
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rtextures.c" />
|
|
340
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rtext.c" />
|
|
341
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rmodels.c" />
|
|
342
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\utils.c" />
|
|
343
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rglfw.c" />
|
|
344
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\raudio.c" />
|
|
345
|
-
</ItemGroup>
|
|
346
|
-
<ItemGroup>
|
|
347
|
-
<ProjectReference Include="C:\Users\Niels\Code\luigi\koffi\build\ZERO_CHECK.vcxproj">
|
|
348
|
-
<Project>{88D8D3DA-3A05-3927-9D00-34B7FC393341}</Project>
|
|
349
|
-
<Name>ZERO_CHECK</Name>
|
|
350
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
351
|
-
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
352
|
-
</ProjectReference>
|
|
353
|
-
</ItemGroup>
|
|
354
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
355
|
-
<ImportGroup Label="ExtensionTargets">
|
|
356
|
-
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
|
357
|
-
</ImportGroup>
|
|
358
|
-
</Project>
|
|
@@ -1,37 +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
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rcore.c">
|
|
5
|
-
<Filter>Source Files</Filter>
|
|
6
|
-
</ClCompile>
|
|
7
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rshapes.c">
|
|
8
|
-
<Filter>Source Files</Filter>
|
|
9
|
-
</ClCompile>
|
|
10
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rtextures.c">
|
|
11
|
-
<Filter>Source Files</Filter>
|
|
12
|
-
</ClCompile>
|
|
13
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rtext.c">
|
|
14
|
-
<Filter>Source Files</Filter>
|
|
15
|
-
</ClCompile>
|
|
16
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rmodels.c">
|
|
17
|
-
<Filter>Source Files</Filter>
|
|
18
|
-
</ClCompile>
|
|
19
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\utils.c">
|
|
20
|
-
<Filter>Source Files</Filter>
|
|
21
|
-
</ClCompile>
|
|
22
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\rglfw.c">
|
|
23
|
-
<Filter>Source Files</Filter>
|
|
24
|
-
</ClCompile>
|
|
25
|
-
<ClCompile Include="C:\Users\Niels\Code\luigi\vendor\raylib\src\raudio.c">
|
|
26
|
-
<Filter>Source Files</Filter>
|
|
27
|
-
</ClCompile>
|
|
28
|
-
</ItemGroup>
|
|
29
|
-
<ItemGroup>
|
|
30
|
-
<CustomBuild Include="C:\Users\Niels\Code\luigi\koffi\CMakeLists.txt" />
|
|
31
|
-
</ItemGroup>
|
|
32
|
-
<ItemGroup>
|
|
33
|
-
<Filter Include="Source Files">
|
|
34
|
-
<UniqueIdentifier>{D76DA0E6-CD9C-300F-9EE3-AB971153E7D2}</UniqueIdentifier>
|
|
35
|
-
</Filter>
|
|
36
|
-
</ItemGroup>
|
|
37
|
-
</Project>
|
package/build/Release/Raylib.dll
DELETED
|
Binary file
|
package/build/Release/Raylib.exp
DELETED
|
Binary file
|
package/build/Release/Raylib.lib
DELETED
|
Binary file
|
package/build/Release/koffi.exp
DELETED
|
Binary file
|
package/build/Release/koffi.lib
DELETED
|
Binary file
|
package/build/Release/koffi.node
DELETED
|
Binary file
|