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/ALL_BUILD.vcxproj
DELETED
|
@@ -1,190 +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>{5BE56245-76AE-3E31-B7E8-D2E7C4DF6895}</ProjectGuid>
|
|
29
|
-
<Keyword>Win32Proj</Keyword>
|
|
30
|
-
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
|
|
31
|
-
<Platform>x64</Platform>
|
|
32
|
-
<ProjectName>ALL_BUILD</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\CMakeLists.txt">
|
|
113
|
-
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
114
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</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-file C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/generate.stamp
|
|
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\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'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</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-file C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/generate.stamp
|
|
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\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'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</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-file C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/generate.stamp
|
|
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\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'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</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-file C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/generate.stamp
|
|
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\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
|
-
<ProjectReference Include="C:\Users\Niels\Code\luigi\koffi\build\ZERO_CHECK.vcxproj">
|
|
172
|
-
<Project>{88D8D3DA-3A05-3927-9D00-34B7FC393341}</Project>
|
|
173
|
-
<Name>ZERO_CHECK</Name>
|
|
174
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
175
|
-
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
176
|
-
</ProjectReference>
|
|
177
|
-
<ProjectReference Include="C:\Users\Niels\Code\luigi\koffi\build\Raylib.vcxproj">
|
|
178
|
-
<Project>{1144E8A1-9651-34E9-B43F-5C6B60F11699}</Project>
|
|
179
|
-
<Name>Raylib</Name>
|
|
180
|
-
</ProjectReference>
|
|
181
|
-
<ProjectReference Include="C:\Users\Niels\Code\luigi\koffi\build\koffi.vcxproj">
|
|
182
|
-
<Project>{CFDA8F0F-5168-3E8E-8779-698AF1761172}</Project>
|
|
183
|
-
<Name>koffi</Name>
|
|
184
|
-
</ProjectReference>
|
|
185
|
-
</ItemGroup>
|
|
186
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
187
|
-
<ImportGroup Label="ExtensionTargets">
|
|
188
|
-
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
|
189
|
-
</ImportGroup>
|
|
190
|
-
</Project>
|
|
@@ -1,8 +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\CMakeLists.txt" />
|
|
5
|
-
</ItemGroup>
|
|
6
|
-
<ItemGroup>
|
|
7
|
-
</ItemGroup>
|
|
8
|
-
</Project>
|
package/build/CMakeCache.txt
DELETED
|
@@ -1,429 +0,0 @@
|
|
|
1
|
-
# This is the CMakeCache file.
|
|
2
|
-
# For build in directory: c:/Users/Niels/Code/luigi/koffi/build
|
|
3
|
-
# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe
|
|
4
|
-
# You can edit this file to change values found and used by cmake.
|
|
5
|
-
# If you do not want to change any of the values, simply exit the editor.
|
|
6
|
-
# If you do want to change a value, simply edit, save, and exit the editor.
|
|
7
|
-
# The syntax for the file is as follows:
|
|
8
|
-
# KEY:TYPE=VALUE
|
|
9
|
-
# KEY is the name of a variable in the cache.
|
|
10
|
-
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
|
11
|
-
# VALUE is the current value for the KEY.
|
|
12
|
-
|
|
13
|
-
########################
|
|
14
|
-
# EXTERNAL cache entries
|
|
15
|
-
########################
|
|
16
|
-
|
|
17
|
-
//Path to a program.
|
|
18
|
-
CMAKE_AR:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/lib.exe
|
|
19
|
-
|
|
20
|
-
//ASM compiler
|
|
21
|
-
CMAKE_ASM_COMPILER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe
|
|
22
|
-
|
|
23
|
-
//Flags used by the ASM compiler during all build types.
|
|
24
|
-
CMAKE_ASM_FLAGS:STRING=
|
|
25
|
-
|
|
26
|
-
//Flags used by the ASM compiler during DEBUG builds.
|
|
27
|
-
CMAKE_ASM_FLAGS_DEBUG:STRING=
|
|
28
|
-
|
|
29
|
-
//Flags used by the ASM compiler during MINSIZEREL builds.
|
|
30
|
-
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=
|
|
31
|
-
|
|
32
|
-
//Flags used by the ASM compiler during RELEASE builds.
|
|
33
|
-
CMAKE_ASM_FLAGS_RELEASE:STRING=
|
|
34
|
-
|
|
35
|
-
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
|
|
36
|
-
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=
|
|
37
|
-
|
|
38
|
-
//ASM_MASM compiler
|
|
39
|
-
CMAKE_ASM_MASM_COMPILER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/ml64.exe
|
|
40
|
-
|
|
41
|
-
//Flags used by the ASM_MASM compiler during all build types.
|
|
42
|
-
CMAKE_ASM_MASM_FLAGS:STRING=
|
|
43
|
-
|
|
44
|
-
//Flags used by the ASM_MASM compiler during DEBUG builds.
|
|
45
|
-
CMAKE_ASM_MASM_FLAGS_DEBUG:STRING=
|
|
46
|
-
|
|
47
|
-
//Flags used by the ASM_MASM compiler during MINSIZEREL builds.
|
|
48
|
-
CMAKE_ASM_MASM_FLAGS_MINSIZEREL:STRING=
|
|
49
|
-
|
|
50
|
-
//Flags used by the ASM_MASM compiler during RELEASE builds.
|
|
51
|
-
CMAKE_ASM_MASM_FLAGS_RELEASE:STRING=
|
|
52
|
-
|
|
53
|
-
//Flags used by the ASM_MASM compiler during RELWITHDEBINFO builds.
|
|
54
|
-
CMAKE_ASM_MASM_FLAGS_RELWITHDEBINFO:STRING=
|
|
55
|
-
|
|
56
|
-
//No help, variable specified on the command line.
|
|
57
|
-
CMAKE_BUILD_TYPE:UNINITIALIZED=Release
|
|
58
|
-
|
|
59
|
-
//Semicolon separated list of supported configuration types, only
|
|
60
|
-
// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything
|
|
61
|
-
// else will be ignored.
|
|
62
|
-
CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo
|
|
63
|
-
|
|
64
|
-
//Flags used by the CXX compiler during all build types.
|
|
65
|
-
CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc
|
|
66
|
-
|
|
67
|
-
//Flags used by the CXX compiler during DEBUG builds.
|
|
68
|
-
CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1
|
|
69
|
-
|
|
70
|
-
//Flags used by the CXX compiler during MINSIZEREL builds.
|
|
71
|
-
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
|
|
72
|
-
|
|
73
|
-
//Flags used by the CXX compiler during RELEASE builds.
|
|
74
|
-
CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
|
|
75
|
-
|
|
76
|
-
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
|
77
|
-
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
|
|
78
|
-
|
|
79
|
-
//Libraries linked by default with all C++ applications.
|
|
80
|
-
CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
|
|
81
|
-
|
|
82
|
-
//Flags used by the C compiler during all build types.
|
|
83
|
-
CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3
|
|
84
|
-
|
|
85
|
-
//Flags used by the C compiler during DEBUG builds.
|
|
86
|
-
CMAKE_C_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1
|
|
87
|
-
|
|
88
|
-
//Flags used by the C compiler during MINSIZEREL builds.
|
|
89
|
-
CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
|
|
90
|
-
|
|
91
|
-
//Flags used by the C compiler during RELEASE builds.
|
|
92
|
-
CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
|
|
93
|
-
|
|
94
|
-
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
|
95
|
-
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
|
|
96
|
-
|
|
97
|
-
//Libraries linked by default with all C applications.
|
|
98
|
-
CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
|
|
99
|
-
|
|
100
|
-
//Flags used by the linker during all build types.
|
|
101
|
-
CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64
|
|
102
|
-
|
|
103
|
-
//Flags used by the linker during DEBUG builds.
|
|
104
|
-
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
|
|
105
|
-
|
|
106
|
-
//Flags used by the linker during MINSIZEREL builds.
|
|
107
|
-
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
|
|
108
|
-
|
|
109
|
-
//Flags used by the linker during RELEASE builds.
|
|
110
|
-
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
|
|
111
|
-
|
|
112
|
-
//Flags used by the linker during RELWITHDEBINFO builds.
|
|
113
|
-
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
|
|
114
|
-
|
|
115
|
-
//Install path prefix, prepended onto install directories.
|
|
116
|
-
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/Luigi
|
|
117
|
-
|
|
118
|
-
//No help, variable specified on the command line.
|
|
119
|
-
CMAKE_JS_INC:UNINITIALIZED=C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node
|
|
120
|
-
|
|
121
|
-
//No help, variable specified on the command line.
|
|
122
|
-
CMAKE_JS_LIB:UNINITIALIZED=C:\Users\Niels\.cmake-js\node-x64\v16.14.0\win-x64\node.lib
|
|
123
|
-
|
|
124
|
-
//No help, variable specified on the command line.
|
|
125
|
-
CMAKE_JS_SRC:UNINITIALIZED=C:/Users/Niels/Code/luigi/node_modules/cmake-js/lib/cpp/win_delay_load_hook.cc
|
|
126
|
-
|
|
127
|
-
//No help, variable specified on the command line.
|
|
128
|
-
CMAKE_JS_VERSION:UNINITIALIZED=6.3.0
|
|
129
|
-
|
|
130
|
-
//Path to a program.
|
|
131
|
-
CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/link.exe
|
|
132
|
-
|
|
133
|
-
//Flags used by the linker during the creation of modules during
|
|
134
|
-
// all build types.
|
|
135
|
-
CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64
|
|
136
|
-
|
|
137
|
-
//Flags used by the linker during the creation of modules during
|
|
138
|
-
// DEBUG builds.
|
|
139
|
-
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
|
|
140
|
-
|
|
141
|
-
//Flags used by the linker during the creation of modules during
|
|
142
|
-
// MINSIZEREL builds.
|
|
143
|
-
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
|
|
144
|
-
|
|
145
|
-
//Flags used by the linker during the creation of modules during
|
|
146
|
-
// RELEASE builds.
|
|
147
|
-
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
|
|
148
|
-
|
|
149
|
-
//Flags used by the linker during the creation of modules during
|
|
150
|
-
// RELWITHDEBINFO builds.
|
|
151
|
-
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
|
|
152
|
-
|
|
153
|
-
//Path to a program.
|
|
154
|
-
CMAKE_MT:FILEPATH=CMAKE_MT-NOTFOUND
|
|
155
|
-
|
|
156
|
-
//Value Computed by CMake
|
|
157
|
-
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
|
158
|
-
|
|
159
|
-
//Value Computed by CMake
|
|
160
|
-
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
|
161
|
-
|
|
162
|
-
//Value Computed by CMake
|
|
163
|
-
CMAKE_PROJECT_NAME:STATIC=koffi
|
|
164
|
-
|
|
165
|
-
//RC compiler
|
|
166
|
-
CMAKE_RC_COMPILER:FILEPATH=C:/Users/Niels/Code/luigi/node_modules/.bin/rc
|
|
167
|
-
|
|
168
|
-
//Flags for Windows Resource Compiler during all build types.
|
|
169
|
-
CMAKE_RC_FLAGS:STRING=-DWIN32
|
|
170
|
-
|
|
171
|
-
//Flags for Windows Resource Compiler during DEBUG builds.
|
|
172
|
-
CMAKE_RC_FLAGS_DEBUG:STRING=-D_DEBUG
|
|
173
|
-
|
|
174
|
-
//Flags for Windows Resource Compiler during MINSIZEREL builds.
|
|
175
|
-
CMAKE_RC_FLAGS_MINSIZEREL:STRING=
|
|
176
|
-
|
|
177
|
-
//Flags for Windows Resource Compiler during RELEASE builds.
|
|
178
|
-
CMAKE_RC_FLAGS_RELEASE:STRING=
|
|
179
|
-
|
|
180
|
-
//Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
|
|
181
|
-
CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=
|
|
182
|
-
|
|
183
|
-
//No help, variable specified on the command line.
|
|
184
|
-
CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=C:\Users\Niels\Code\luigi\koffi\build
|
|
185
|
-
|
|
186
|
-
//Flags used by the linker during the creation of shared libraries
|
|
187
|
-
// during all build types.
|
|
188
|
-
CMAKE_SHARED_LINKER_FLAGS:STRING=/DELAYLOAD:NODE.EXE
|
|
189
|
-
|
|
190
|
-
//Flags used by the linker during the creation of shared libraries
|
|
191
|
-
// during DEBUG builds.
|
|
192
|
-
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
|
|
193
|
-
|
|
194
|
-
//Flags used by the linker during the creation of shared libraries
|
|
195
|
-
// during MINSIZEREL builds.
|
|
196
|
-
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
|
|
197
|
-
|
|
198
|
-
//Flags used by the linker during the creation of shared libraries
|
|
199
|
-
// during RELEASE builds.
|
|
200
|
-
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
|
|
201
|
-
|
|
202
|
-
//Flags used by the linker during the creation of shared libraries
|
|
203
|
-
// during RELWITHDEBINFO builds.
|
|
204
|
-
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
|
|
205
|
-
|
|
206
|
-
//If set, runtime paths are not added when installing shared libraries,
|
|
207
|
-
// but are added when building.
|
|
208
|
-
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
|
209
|
-
|
|
210
|
-
//If set, runtime paths are not added when using shared libraries.
|
|
211
|
-
CMAKE_SKIP_RPATH:BOOL=NO
|
|
212
|
-
|
|
213
|
-
//Flags used by the linker during the creation of static libraries
|
|
214
|
-
// during all build types.
|
|
215
|
-
CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64
|
|
216
|
-
|
|
217
|
-
//Flags used by the linker during the creation of static libraries
|
|
218
|
-
// during DEBUG builds.
|
|
219
|
-
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
|
220
|
-
|
|
221
|
-
//Flags used by the linker during the creation of static libraries
|
|
222
|
-
// during MINSIZEREL builds.
|
|
223
|
-
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
|
224
|
-
|
|
225
|
-
//Flags used by the linker during the creation of static libraries
|
|
226
|
-
// during RELEASE builds.
|
|
227
|
-
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
|
228
|
-
|
|
229
|
-
//Flags used by the linker during the creation of static libraries
|
|
230
|
-
// during RELWITHDEBINFO builds.
|
|
231
|
-
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
|
232
|
-
|
|
233
|
-
//If this value is on, makefiles will be generated without the
|
|
234
|
-
// .SILENT directive, and all commands will be echoed to the console
|
|
235
|
-
// during the make. This is useful for debugging only. With Visual
|
|
236
|
-
// Studio IDE projects all commands are done without /nologo.
|
|
237
|
-
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
|
238
|
-
|
|
239
|
-
//Value Computed by CMake
|
|
240
|
-
Luigi_BINARY_DIR:STATIC=C:/Users/Niels/Code/luigi/koffi/build
|
|
241
|
-
|
|
242
|
-
//Value Computed by CMake
|
|
243
|
-
Luigi_IS_TOP_LEVEL:STATIC=ON
|
|
244
|
-
|
|
245
|
-
//Value Computed by CMake
|
|
246
|
-
Luigi_SOURCE_DIR:STATIC=C:/Users/Niels/Code/luigi/koffi
|
|
247
|
-
|
|
248
|
-
//No help, variable specified on the command line.
|
|
249
|
-
NODE_ARCH:UNINITIALIZED=x64
|
|
250
|
-
|
|
251
|
-
//No help, variable specified on the command line.
|
|
252
|
-
NODE_RUNTIME:UNINITIALIZED=node
|
|
253
|
-
|
|
254
|
-
//No help, variable specified on the command line.
|
|
255
|
-
NODE_RUNTIMEVERSION:UNINITIALIZED=16.14.0
|
|
256
|
-
|
|
257
|
-
//Dependencies for the target
|
|
258
|
-
Raylib_LIB_DEPENDS:STATIC=general;winmm;
|
|
259
|
-
|
|
260
|
-
//Value Computed by CMake
|
|
261
|
-
koffi_BINARY_DIR:STATIC=C:/Users/Niels/Code/luigi/koffi/build
|
|
262
|
-
|
|
263
|
-
//Value Computed by CMake
|
|
264
|
-
koffi_IS_TOP_LEVEL:STATIC=ON
|
|
265
|
-
|
|
266
|
-
//Dependencies for the target
|
|
267
|
-
koffi_LIB_DEPENDS:STATIC=general;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\win-x64\node.lib;general;ws2_32;
|
|
268
|
-
|
|
269
|
-
//Value Computed by CMake
|
|
270
|
-
koffi_SOURCE_DIR:STATIC=C:/Users/Niels/Code/luigi/koffi
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
########################
|
|
274
|
-
# INTERNAL cache entries
|
|
275
|
-
########################
|
|
276
|
-
|
|
277
|
-
//ADVANCED property for variable: CMAKE_AR
|
|
278
|
-
CMAKE_AR-ADVANCED:INTERNAL=1
|
|
279
|
-
//ADVANCED property for variable: CMAKE_ASM_COMPILER
|
|
280
|
-
CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1
|
|
281
|
-
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
|
|
282
|
-
//ADVANCED property for variable: CMAKE_ASM_FLAGS
|
|
283
|
-
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
|
|
284
|
-
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
|
|
285
|
-
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
286
|
-
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
|
|
287
|
-
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
288
|
-
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
|
|
289
|
-
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
290
|
-
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
|
|
291
|
-
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
292
|
-
//ADVANCED property for variable: CMAKE_ASM_MASM_COMPILER
|
|
293
|
-
CMAKE_ASM_MASM_COMPILER-ADVANCED:INTERNAL=1
|
|
294
|
-
CMAKE_ASM_MASM_COMPILER_WORKS:INTERNAL=1
|
|
295
|
-
//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS
|
|
296
|
-
CMAKE_ASM_MASM_FLAGS-ADVANCED:INTERNAL=1
|
|
297
|
-
//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS_DEBUG
|
|
298
|
-
CMAKE_ASM_MASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
299
|
-
//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS_MINSIZEREL
|
|
300
|
-
CMAKE_ASM_MASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
301
|
-
//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS_RELEASE
|
|
302
|
-
CMAKE_ASM_MASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
303
|
-
//ADVANCED property for variable: CMAKE_ASM_MASM_FLAGS_RELWITHDEBINFO
|
|
304
|
-
CMAKE_ASM_MASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
305
|
-
//This is the directory where this CMakeCache.txt was created
|
|
306
|
-
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Niels/Code/luigi/koffi/build
|
|
307
|
-
//Major version of cmake used to create the current loaded cache
|
|
308
|
-
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
|
309
|
-
//Minor version of cmake used to create the current loaded cache
|
|
310
|
-
CMAKE_CACHE_MINOR_VERSION:INTERNAL=23
|
|
311
|
-
//Patch version of cmake used to create the current loaded cache
|
|
312
|
-
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
|
|
313
|
-
//Path to CMake executable.
|
|
314
|
-
CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe
|
|
315
|
-
//Path to cpack program executable.
|
|
316
|
-
CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe
|
|
317
|
-
//Path to ctest program executable.
|
|
318
|
-
CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe
|
|
319
|
-
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
|
320
|
-
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
|
321
|
-
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
|
322
|
-
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
323
|
-
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
|
324
|
-
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
325
|
-
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
|
326
|
-
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
327
|
-
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
|
328
|
-
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
329
|
-
//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
|
|
330
|
-
CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
|
|
331
|
-
//ADVANCED property for variable: CMAKE_C_FLAGS
|
|
332
|
-
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
|
333
|
-
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
|
334
|
-
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
335
|
-
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
|
336
|
-
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
337
|
-
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
|
338
|
-
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
339
|
-
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
|
340
|
-
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
341
|
-
//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
|
|
342
|
-
CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
|
|
343
|
-
//Executable file format
|
|
344
|
-
CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
|
|
345
|
-
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
|
346
|
-
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
|
347
|
-
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
|
348
|
-
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
349
|
-
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
|
350
|
-
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
351
|
-
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
|
352
|
-
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
353
|
-
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
|
354
|
-
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
355
|
-
//Name of external makefile project generator.
|
|
356
|
-
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
|
357
|
-
//Name of generator.
|
|
358
|
-
CMAKE_GENERATOR:INTERNAL=Visual Studio 16 2019
|
|
359
|
-
//Generator instance identifier.
|
|
360
|
-
CMAKE_GENERATOR_INSTANCE:INTERNAL=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community
|
|
361
|
-
//Name of generator platform.
|
|
362
|
-
CMAKE_GENERATOR_PLATFORM:INTERNAL=x64
|
|
363
|
-
//Name of generator toolset.
|
|
364
|
-
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
|
365
|
-
//Source directory with the top level CMakeLists.txt file for this
|
|
366
|
-
// project
|
|
367
|
-
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Niels/Code/luigi/koffi
|
|
368
|
-
//ADVANCED property for variable: CMAKE_LINKER
|
|
369
|
-
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
|
370
|
-
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
|
371
|
-
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
|
372
|
-
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
|
373
|
-
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
374
|
-
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
|
375
|
-
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
376
|
-
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
|
377
|
-
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
378
|
-
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
|
379
|
-
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
380
|
-
//ADVANCED property for variable: CMAKE_MT
|
|
381
|
-
CMAKE_MT-ADVANCED:INTERNAL=1
|
|
382
|
-
//number of local generators
|
|
383
|
-
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
|
384
|
-
//Platform information initialized
|
|
385
|
-
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
|
386
|
-
//noop for ranlib
|
|
387
|
-
CMAKE_RANLIB:INTERNAL=:
|
|
388
|
-
//ADVANCED property for variable: CMAKE_RC_COMPILER
|
|
389
|
-
CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
|
|
390
|
-
CMAKE_RC_COMPILER_WORKS:INTERNAL=1
|
|
391
|
-
//ADVANCED property for variable: CMAKE_RC_FLAGS
|
|
392
|
-
CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
|
|
393
|
-
//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG
|
|
394
|
-
CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
395
|
-
//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL
|
|
396
|
-
CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
397
|
-
//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE
|
|
398
|
-
CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
399
|
-
//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO
|
|
400
|
-
CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
401
|
-
//Path to CMake installation.
|
|
402
|
-
CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.23
|
|
403
|
-
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
|
404
|
-
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
|
405
|
-
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
|
406
|
-
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
407
|
-
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
|
408
|
-
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
409
|
-
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
|
410
|
-
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
411
|
-
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
|
412
|
-
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
413
|
-
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
|
414
|
-
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
|
415
|
-
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
|
416
|
-
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
|
417
|
-
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
|
418
|
-
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
|
419
|
-
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
|
420
|
-
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
|
421
|
-
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
|
422
|
-
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
|
423
|
-
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
|
424
|
-
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
|
425
|
-
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
|
426
|
-
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|
427
|
-
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
|
428
|
-
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
|
429
|
-
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
set(CMAKE_ASM_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe")
|
|
2
|
-
set(CMAKE_ASM_COMPILER_ARG1 "")
|
|
3
|
-
set(CMAKE_AR "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/lib.exe")
|
|
4
|
-
set(CMAKE_ASM_COMPILER_AR "")
|
|
5
|
-
set(CMAKE_RANLIB ":")
|
|
6
|
-
set(CMAKE_ASM_COMPILER_RANLIB "")
|
|
7
|
-
set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/link.exe")
|
|
8
|
-
set(CMAKE_MT "CMAKE_MT-NOTFOUND")
|
|
9
|
-
set(CMAKE_ASM_COMPILER_LOADED 1)
|
|
10
|
-
set(CMAKE_ASM_COMPILER_ID "MSVC")
|
|
11
|
-
set(CMAKE_ASM_COMPILER_VERSION "")
|
|
12
|
-
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
|
18
|
-
set(CMAKE_ASM_LINKER_PREFERENCE 0)
|
|
19
|
-
|
|
20
|
-
|