koffi 0.9.1 → 0.9.4

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.
Files changed (439) hide show
  1. package/CMakeLists.txt +2 -36
  2. package/package.json +3 -3
  3. package/vendor/dragonbox/CMakeLists.txt +123 -0
  4. package/vendor/dragonbox/LICENSE-Apache2-LLVM +218 -0
  5. package/vendor/dragonbox/LICENSE-Boost +23 -0
  6. package/vendor/dragonbox/README.md +277 -0
  7. package/vendor/dragonbox/cmake/dragonboxConfig.cmake +1 -0
  8. package/vendor/dragonbox/include/dragonbox/dragonbox.h +2670 -0
  9. package/vendor/dragonbox/include/dragonbox/dragonbox_to_chars.h +108 -0
  10. package/vendor/dragonbox/other_files/Dragonbox.pdf +0 -0
  11. package/vendor/dragonbox/other_files/Dragonbox_old.pdf +0 -0
  12. package/vendor/dragonbox/other_files/milo_benchmark.png +0 -0
  13. package/vendor/dragonbox/other_files/unknown_win64_vc2019.html +540 -0
  14. package/vendor/dragonbox/other_files/unknown_win64_vc2019_randomdigit_time.png +0 -0
  15. package/vendor/dragonbox/source/dragonbox_to_chars.cpp +303 -0
  16. package/vendor/dragonbox/subproject/3rdparty/grisu_exact/CMakeLists.txt +24 -0
  17. package/vendor/dragonbox/subproject/3rdparty/grisu_exact/fp_to_chars.cpp +238 -0
  18. package/vendor/dragonbox/subproject/3rdparty/grisu_exact/fp_to_chars.h +95 -0
  19. package/vendor/dragonbox/subproject/3rdparty/grisu_exact/grisu_exact.h +2666 -0
  20. package/vendor/dragonbox/subproject/3rdparty/ryu/CMakeLists.txt +16 -0
  21. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/common.h +114 -0
  22. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s.c +509 -0
  23. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s_full_table.h +367 -0
  24. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s_intrinsics.h +357 -0
  25. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/digit_table.h +35 -0
  26. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s.c +345 -0
  27. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s_full_table.h +55 -0
  28. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s_intrinsics.h +128 -0
  29. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/ryu.h +46 -0
  30. package/vendor/dragonbox/subproject/3rdparty/schubfach/CMakeLists.txt +22 -0
  31. package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_32.cc +699 -0
  32. package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_32.h +31 -0
  33. package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_64.cc +1354 -0
  34. package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_64.h +31 -0
  35. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/example_shaded_plots.m +68 -0
  36. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/license.txt +25 -0
  37. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_distribution.m +92 -0
  38. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_distribution_prctile.m +121 -0
  39. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_histogram_shaded.m +99 -0
  40. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_shaded.m +93 -0
  41. package/vendor/dragonbox/subproject/benchmark/CMakeLists.txt +65 -0
  42. package/vendor/dragonbox/subproject/benchmark/include/benchmark.h +40 -0
  43. package/vendor/dragonbox/subproject/benchmark/matlab/plot_benchmarks.m +22 -0
  44. package/vendor/dragonbox/subproject/benchmark/matlab/plot_digit_benchmark.m +78 -0
  45. package/vendor/dragonbox/subproject/benchmark/matlab/plot_uniform_benchmark.m +95 -0
  46. package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary32_clang.png +0 -0
  47. package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary32_msvc.png +0 -0
  48. package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary64_clang.png +0 -0
  49. package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary64_msvc.png +0 -0
  50. package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary32_clang.png +0 -0
  51. package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary32_msvc.png +0 -0
  52. package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary64_clang.png +0 -0
  53. package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary64_msvc.png +0 -0
  54. package/vendor/dragonbox/subproject/benchmark/source/benchmark.cpp +238 -0
  55. package/vendor/dragonbox/subproject/benchmark/source/dragonbox.cpp +30 -0
  56. package/vendor/dragonbox/subproject/benchmark/source/grisu_exact.cpp +36 -0
  57. package/vendor/dragonbox/subproject/benchmark/source/ryu.cpp +27 -0
  58. package/vendor/dragonbox/subproject/benchmark/source/schubfach.cpp +31 -0
  59. package/vendor/dragonbox/subproject/common/CMakeLists.txt +42 -0
  60. package/vendor/dragonbox/subproject/common/include/best_rational_approx.h +97 -0
  61. package/vendor/dragonbox/subproject/common/include/big_uint.h +218 -0
  62. package/vendor/dragonbox/subproject/common/include/continued_fractions.h +174 -0
  63. package/vendor/dragonbox/subproject/common/include/good_rational_approx.h +267 -0
  64. package/vendor/dragonbox/subproject/common/include/random_float.h +182 -0
  65. package/vendor/dragonbox/subproject/common/include/rational_continued_fractions.h +57 -0
  66. package/vendor/dragonbox/subproject/common/source/big_uint.cpp +602 -0
  67. package/vendor/dragonbox/subproject/meta/CMakeLists.txt +41 -0
  68. package/vendor/dragonbox/subproject/meta/results/binary32_generated_cache.txt +82 -0
  69. package/vendor/dragonbox/subproject/meta/results/binary64_compressed_cache_error_table.txt +10 -0
  70. package/vendor/dragonbox/subproject/meta/results/binary64_generated_cache.txt +623 -0
  71. package/vendor/dragonbox/subproject/meta/source/generate_cache.cpp +126 -0
  72. package/vendor/dragonbox/subproject/meta/source/live_test.cpp +81 -0
  73. package/vendor/dragonbox/subproject/meta/source/perf_test.cpp +104 -0
  74. package/vendor/dragonbox/subproject/meta/source/sandbox.cpp +20 -0
  75. package/vendor/dragonbox/subproject/test/CMakeLists.txt +70 -0
  76. package/vendor/dragonbox/subproject/test/results/binary32.csv +255 -0
  77. package/vendor/dragonbox/subproject/test/results/binary64.csv +2047 -0
  78. package/vendor/dragonbox/subproject/test/results/plot_required_bits.m +18 -0
  79. package/vendor/dragonbox/subproject/test/source/test_all_shorter_interval_cases.cpp +88 -0
  80. package/vendor/dragonbox/subproject/test/source/uniform_random_test.cpp +95 -0
  81. package/vendor/dragonbox/subproject/test/source/verify_cache_precision.cpp +338 -0
  82. package/vendor/dragonbox/subproject/test/source/verify_compressed_cache.cpp +154 -0
  83. package/vendor/dragonbox/subproject/test/source/verify_fast_multiplication.cpp +168 -0
  84. package/vendor/dragonbox/subproject/test/source/verify_log_computation.cpp +251 -0
  85. package/vendor/dragonbox/subproject/test/source/verify_magic_division.cpp +113 -0
  86. package/vendor/libcc/libcc.cc +7651 -0
  87. package/vendor/libcc/libcc.hh +4312 -0
  88. package/vendor/node-addon-api/CHANGELOG.md +859 -0
  89. package/vendor/node-addon-api/CODE_OF_CONDUCT.md +4 -0
  90. package/vendor/node-addon-api/CONTRIBUTING.md +93 -0
  91. package/vendor/node-addon-api/LICENSE.md +13 -0
  92. package/vendor/node-addon-api/README.md +293 -0
  93. package/vendor/node-addon-api/appveyor.yml +37 -0
  94. package/vendor/node-addon-api/benchmark/README.md +47 -0
  95. package/vendor/node-addon-api/benchmark/binding.gyp +25 -0
  96. package/vendor/node-addon-api/benchmark/function_args.cc +217 -0
  97. package/vendor/node-addon-api/benchmark/function_args.js +60 -0
  98. package/vendor/node-addon-api/benchmark/index.js +34 -0
  99. package/vendor/node-addon-api/benchmark/property_descriptor.cc +91 -0
  100. package/vendor/node-addon-api/benchmark/property_descriptor.js +37 -0
  101. package/vendor/node-addon-api/common.gypi +21 -0
  102. package/vendor/node-addon-api/doc/addon.md +163 -0
  103. package/vendor/node-addon-api/doc/array.md +81 -0
  104. package/vendor/node-addon-api/doc/array_buffer.md +155 -0
  105. package/vendor/node-addon-api/doc/async_context.md +86 -0
  106. package/vendor/node-addon-api/doc/async_operations.md +31 -0
  107. package/vendor/node-addon-api/doc/async_worker.md +427 -0
  108. package/vendor/node-addon-api/doc/async_worker_variants.md +557 -0
  109. package/vendor/node-addon-api/doc/bigint.md +97 -0
  110. package/vendor/node-addon-api/doc/boolean.md +68 -0
  111. package/vendor/node-addon-api/doc/buffer.md +150 -0
  112. package/vendor/node-addon-api/doc/callback_scope.md +54 -0
  113. package/vendor/node-addon-api/doc/callbackinfo.md +97 -0
  114. package/vendor/node-addon-api/doc/checker-tool.md +32 -0
  115. package/vendor/node-addon-api/doc/class_property_descriptor.md +115 -0
  116. package/vendor/node-addon-api/doc/cmake-js.md +68 -0
  117. package/vendor/node-addon-api/doc/conversion-tool.md +28 -0
  118. package/vendor/node-addon-api/doc/creating_a_release.md +62 -0
  119. package/vendor/node-addon-api/doc/dataview.md +248 -0
  120. package/vendor/node-addon-api/doc/date.md +68 -0
  121. package/vendor/node-addon-api/doc/env.md +196 -0
  122. package/vendor/node-addon-api/doc/error.md +120 -0
  123. package/vendor/node-addon-api/doc/error_handling.md +254 -0
  124. package/vendor/node-addon-api/doc/escapable_handle_scope.md +80 -0
  125. package/vendor/node-addon-api/doc/external.md +63 -0
  126. package/vendor/node-addon-api/doc/function.md +402 -0
  127. package/vendor/node-addon-api/doc/function_reference.md +238 -0
  128. package/vendor/node-addon-api/doc/generator.md +13 -0
  129. package/vendor/node-addon-api/doc/handle_scope.md +63 -0
  130. package/vendor/node-addon-api/doc/hierarchy.md +91 -0
  131. package/vendor/node-addon-api/doc/instance_wrap.md +408 -0
  132. package/vendor/node-addon-api/doc/maybe.md +76 -0
  133. package/vendor/node-addon-api/doc/memory_management.md +27 -0
  134. package/vendor/node-addon-api/doc/name.md +29 -0
  135. package/vendor/node-addon-api/doc/node-gyp.md +82 -0
  136. package/vendor/node-addon-api/doc/number.md +163 -0
  137. package/vendor/node-addon-api/doc/object.md +432 -0
  138. package/vendor/node-addon-api/doc/object_lifetime_management.md +83 -0
  139. package/vendor/node-addon-api/doc/object_reference.md +117 -0
  140. package/vendor/node-addon-api/doc/object_wrap.md +561 -0
  141. package/vendor/node-addon-api/doc/prebuild_tools.md +16 -0
  142. package/vendor/node-addon-api/doc/promises.md +79 -0
  143. package/vendor/node-addon-api/doc/property_descriptor.md +286 -0
  144. package/vendor/node-addon-api/doc/propertylvalue.md +50 -0
  145. package/vendor/node-addon-api/doc/range_error.md +59 -0
  146. package/vendor/node-addon-api/doc/reference.md +113 -0
  147. package/vendor/node-addon-api/doc/setup.md +110 -0
  148. package/vendor/node-addon-api/doc/string.md +93 -0
  149. package/vendor/node-addon-api/doc/symbol.md +61 -0
  150. package/vendor/node-addon-api/doc/threadsafe.md +121 -0
  151. package/vendor/node-addon-api/doc/threadsafe_function.md +290 -0
  152. package/vendor/node-addon-api/doc/type_error.md +59 -0
  153. package/vendor/node-addon-api/doc/typed_array.md +78 -0
  154. package/vendor/node-addon-api/doc/typed_array_of.md +137 -0
  155. package/vendor/node-addon-api/doc/typed_threadsafe_function.md +306 -0
  156. package/vendor/node-addon-api/doc/value.md +340 -0
  157. package/vendor/node-addon-api/doc/version_management.md +43 -0
  158. package/vendor/node-addon-api/except.gypi +25 -0
  159. package/vendor/node-addon-api/index.js +11 -0
  160. package/vendor/node-addon-api/napi-inl.deprecated.h +192 -0
  161. package/vendor/node-addon-api/napi-inl.h +6209 -0
  162. package/vendor/node-addon-api/napi.h +2983 -0
  163. package/vendor/node-addon-api/node_api.gyp +9 -0
  164. package/vendor/node-addon-api/noexcept.gypi +26 -0
  165. package/vendor/node-addon-api/nothing.c +0 -0
  166. package/vendor/node-addon-api/package-support.json +21 -0
  167. package/vendor/node-addon-api/package.json +399 -0
  168. package/vendor/node-addon-api/test/README.md +91 -0
  169. package/vendor/node-addon-api/test/addon.cc +36 -0
  170. package/vendor/node-addon-api/test/addon.js +11 -0
  171. package/vendor/node-addon-api/test/addon_build/index.js +49 -0
  172. package/vendor/node-addon-api/test/addon_build/tpl/addon.cc +17 -0
  173. package/vendor/node-addon-api/test/addon_build/tpl/binding.gyp +62 -0
  174. package/vendor/node-addon-api/test/addon_build/tpl/index.js +9 -0
  175. package/vendor/node-addon-api/test/addon_build/tpl/package.json +11 -0
  176. package/vendor/node-addon-api/test/addon_data.cc +99 -0
  177. package/vendor/node-addon-api/test/addon_data.js +46 -0
  178. package/vendor/node-addon-api/test/array_buffer.cc +243 -0
  179. package/vendor/node-addon-api/test/array_buffer.js +69 -0
  180. package/vendor/node-addon-api/test/async_context.cc +21 -0
  181. package/vendor/node-addon-api/test/async_context.js +86 -0
  182. package/vendor/node-addon-api/test/async_progress_queue_worker.cc +83 -0
  183. package/vendor/node-addon-api/test/async_progress_queue_worker.js +46 -0
  184. package/vendor/node-addon-api/test/async_progress_worker.cc +134 -0
  185. package/vendor/node-addon-api/test/async_progress_worker.js +61 -0
  186. package/vendor/node-addon-api/test/async_worker.cc +106 -0
  187. package/vendor/node-addon-api/test/async_worker.js +179 -0
  188. package/vendor/node-addon-api/test/async_worker_nocallback.js +13 -0
  189. package/vendor/node-addon-api/test/async_worker_persistent.cc +63 -0
  190. package/vendor/node-addon-api/test/async_worker_persistent.js +24 -0
  191. package/vendor/node-addon-api/test/basic_types/array.cc +40 -0
  192. package/vendor/node-addon-api/test/basic_types/array.js +35 -0
  193. package/vendor/node-addon-api/test/basic_types/boolean.cc +38 -0
  194. package/vendor/node-addon-api/test/basic_types/boolean.js +35 -0
  195. package/vendor/node-addon-api/test/basic_types/number.cc +99 -0
  196. package/vendor/node-addon-api/test/basic_types/number.js +114 -0
  197. package/vendor/node-addon-api/test/basic_types/value.cc +120 -0
  198. package/vendor/node-addon-api/test/basic_types/value.js +133 -0
  199. package/vendor/node-addon-api/test/bigint.cc +91 -0
  200. package/vendor/node-addon-api/test/bigint.js +53 -0
  201. package/vendor/node-addon-api/test/binding-swallowexcept.cc +12 -0
  202. package/vendor/node-addon-api/test/binding.cc +171 -0
  203. package/vendor/node-addon-api/test/binding.gyp +117 -0
  204. package/vendor/node-addon-api/test/buffer.cc +183 -0
  205. package/vendor/node-addon-api/test/buffer.js +69 -0
  206. package/vendor/node-addon-api/test/callbackscope.cc +22 -0
  207. package/vendor/node-addon-api/test/callbackscope.js +49 -0
  208. package/vendor/node-addon-api/test/common/index.js +113 -0
  209. package/vendor/node-addon-api/test/common/test_helper.h +61 -0
  210. package/vendor/node-addon-api/test/dataview/dataview.cc +48 -0
  211. package/vendor/node-addon-api/test/dataview/dataview.js +35 -0
  212. package/vendor/node-addon-api/test/dataview/dataview_read_write.cc +115 -0
  213. package/vendor/node-addon-api/test/dataview/dataview_read_write.js +90 -0
  214. package/vendor/node-addon-api/test/date.cc +44 -0
  215. package/vendor/node-addon-api/test/date.js +18 -0
  216. package/vendor/node-addon-api/test/env_cleanup.cc +88 -0
  217. package/vendor/node-addon-api/test/env_cleanup.js +56 -0
  218. package/vendor/node-addon-api/test/error.cc +287 -0
  219. package/vendor/node-addon-api/test/error.js +81 -0
  220. package/vendor/node-addon-api/test/error_handling_for_primitives.cc +13 -0
  221. package/vendor/node-addon-api/test/error_handling_for_primitives.js +29 -0
  222. package/vendor/node-addon-api/test/error_terminating_environment.js +94 -0
  223. package/vendor/node-addon-api/test/external.cc +81 -0
  224. package/vendor/node-addon-api/test/external.js +88 -0
  225. package/vendor/node-addon-api/test/function.cc +295 -0
  226. package/vendor/node-addon-api/test/function.js +121 -0
  227. package/vendor/node-addon-api/test/function_reference.cc +202 -0
  228. package/vendor/node-addon-api/test/function_reference.js +157 -0
  229. package/vendor/node-addon-api/test/globalObject/global_object.cc +61 -0
  230. package/vendor/node-addon-api/test/globalObject/global_object_delete_property.cc +31 -0
  231. package/vendor/node-addon-api/test/globalObject/global_object_delete_property.js +61 -0
  232. package/vendor/node-addon-api/test/globalObject/global_object_get_property.cc +40 -0
  233. package/vendor/node-addon-api/test/globalObject/global_object_get_property.js +57 -0
  234. package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.cc +28 -0
  235. package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.js +48 -0
  236. package/vendor/node-addon-api/test/globalObject/global_object_set_property.cc +31 -0
  237. package/vendor/node-addon-api/test/globalObject/global_object_set_property.js +58 -0
  238. package/vendor/node-addon-api/test/handlescope.cc +60 -0
  239. package/vendor/node-addon-api/test/handlescope.js +14 -0
  240. package/vendor/node-addon-api/test/index.js +136 -0
  241. package/vendor/node-addon-api/test/maybe/check.cc +23 -0
  242. package/vendor/node-addon-api/test/maybe/index.js +38 -0
  243. package/vendor/node-addon-api/test/memory_management.cc +17 -0
  244. package/vendor/node-addon-api/test/memory_management.js +9 -0
  245. package/vendor/node-addon-api/test/movable_callbacks.cc +23 -0
  246. package/vendor/node-addon-api/test/movable_callbacks.js +21 -0
  247. package/vendor/node-addon-api/test/name.cc +108 -0
  248. package/vendor/node-addon-api/test/name.js +59 -0
  249. package/vendor/node-addon-api/test/napi_child.js +14 -0
  250. package/vendor/node-addon-api/test/object/delete_property.cc +38 -0
  251. package/vendor/node-addon-api/test/object/delete_property.js +41 -0
  252. package/vendor/node-addon-api/test/object/finalizer.cc +29 -0
  253. package/vendor/node-addon-api/test/object/finalizer.js +28 -0
  254. package/vendor/node-addon-api/test/object/get_property.cc +34 -0
  255. package/vendor/node-addon-api/test/object/get_property.js +40 -0
  256. package/vendor/node-addon-api/test/object/has_own_property.cc +34 -0
  257. package/vendor/node-addon-api/test/object/has_own_property.js +34 -0
  258. package/vendor/node-addon-api/test/object/has_property.cc +38 -0
  259. package/vendor/node-addon-api/test/object/has_property.js +37 -0
  260. package/vendor/node-addon-api/test/object/object.cc +348 -0
  261. package/vendor/node-addon-api/test/object/object.js +217 -0
  262. package/vendor/node-addon-api/test/object/object_deprecated.cc +66 -0
  263. package/vendor/node-addon-api/test/object/object_deprecated.js +47 -0
  264. package/vendor/node-addon-api/test/object/object_freeze_seal.cc +25 -0
  265. package/vendor/node-addon-api/test/object/object_freeze_seal.js +61 -0
  266. package/vendor/node-addon-api/test/object/set_property.cc +37 -0
  267. package/vendor/node-addon-api/test/object/set_property.js +29 -0
  268. package/vendor/node-addon-api/test/object/subscript_operator.cc +42 -0
  269. package/vendor/node-addon-api/test/object/subscript_operator.js +17 -0
  270. package/vendor/node-addon-api/test/object_reference.cc +219 -0
  271. package/vendor/node-addon-api/test/object_reference.js +259 -0
  272. package/vendor/node-addon-api/test/objectwrap.cc +268 -0
  273. package/vendor/node-addon-api/test/objectwrap.js +284 -0
  274. package/vendor/node-addon-api/test/objectwrap_constructor_exception.cc +26 -0
  275. package/vendor/node-addon-api/test/objectwrap_constructor_exception.js +18 -0
  276. package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.cc +30 -0
  277. package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.js +13 -0
  278. package/vendor/node-addon-api/test/objectwrap_removewrap.cc +45 -0
  279. package/vendor/node-addon-api/test/objectwrap_removewrap.js +40 -0
  280. package/vendor/node-addon-api/test/objectwrap_worker_thread.js +19 -0
  281. package/vendor/node-addon-api/test/promise.cc +29 -0
  282. package/vendor/node-addon-api/test/promise.js +18 -0
  283. package/vendor/node-addon-api/test/reference.cc +24 -0
  284. package/vendor/node-addon-api/test/reference.js +14 -0
  285. package/vendor/node-addon-api/test/run_script.cc +56 -0
  286. package/vendor/node-addon-api/test/run_script.js +45 -0
  287. package/vendor/node-addon-api/test/symbol.cc +79 -0
  288. package/vendor/node-addon-api/test/symbol.js +73 -0
  289. package/vendor/node-addon-api/test/testUtil.js +54 -0
  290. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.cc +195 -0
  291. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.js +188 -0
  292. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.cc +63 -0
  293. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.js +12 -0
  294. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.cc +115 -0
  295. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.js +14 -0
  296. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.cc +26 -0
  297. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.js +7 -0
  298. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.cc +225 -0
  299. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.js +59 -0
  300. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.cc +42 -0
  301. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.js +53 -0
  302. package/vendor/node-addon-api/test/thunking_manual.cc +140 -0
  303. package/vendor/node-addon-api/test/thunking_manual.js +17 -0
  304. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.cc +215 -0
  305. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.js +188 -0
  306. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.cc +68 -0
  307. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.js +12 -0
  308. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.cc +127 -0
  309. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.js +14 -0
  310. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.cc +28 -0
  311. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.js +7 -0
  312. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.cc +237 -0
  313. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.js +59 -0
  314. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.cc +53 -0
  315. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.js +53 -0
  316. package/vendor/node-addon-api/test/typedarray-bigint.js +58 -0
  317. package/vendor/node-addon-api/test/typedarray.cc +216 -0
  318. package/vendor/node-addon-api/test/typedarray.js +69 -0
  319. package/vendor/node-addon-api/test/version_management.cc +27 -0
  320. package/vendor/node-addon-api/test/version_management.js +31 -0
  321. package/vendor/node-addon-api/tools/README.md +73 -0
  322. package/vendor/node-addon-api/tools/check-napi.js +100 -0
  323. package/vendor/node-addon-api/tools/clang-format.js +68 -0
  324. package/vendor/node-addon-api/tools/conversion.js +309 -0
  325. package/vendor/node-addon-api/tools/eslint-format.js +71 -0
  326. package/build/ALL_BUILD.vcxproj +0 -190
  327. package/build/ALL_BUILD.vcxproj.filters +0 -8
  328. package/build/CMakeCache.txt +0 -429
  329. package/build/CMakeFiles/3.23.0-rc1/CMakeASMCompiler.cmake +0 -20
  330. package/build/CMakeFiles/3.23.0-rc1/CMakeASM_MASMCompiler.cmake +0 -20
  331. package/build/CMakeFiles/3.23.0-rc1/CMakeCCompiler.cmake +0 -72
  332. package/build/CMakeFiles/3.23.0-rc1/CMakeCXXCompiler.cmake +0 -83
  333. package/build/CMakeFiles/3.23.0-rc1/CMakeDetermineCompilerABI_C.bin +0 -0
  334. package/build/CMakeFiles/3.23.0-rc1/CMakeDetermineCompilerABI_CXX.bin +0 -0
  335. package/build/CMakeFiles/3.23.0-rc1/CMakeRCCompiler.cmake +0 -6
  336. package/build/CMakeFiles/3.23.0-rc1/CMakeSystem.cmake +0 -15
  337. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CMakeCCompilerId.c +0 -828
  338. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CompilerIdC.exe +0 -0
  339. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CompilerIdC.vcxproj +0 -71
  340. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CMakeCCompilerId.obj +0 -0
  341. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.exe.recipe +0 -11
  342. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog +0 -0
  343. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog +0 -0
  344. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog +0 -0
  345. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate +0 -2
  346. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog +0 -0
  347. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog +0 -0
  348. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog +0 -0
  349. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -816
  350. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CompilerIdCXX.exe +0 -0
  351. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CompilerIdCXX.vcxproj +0 -71
  352. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj +0 -0
  353. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.exe.recipe +0 -11
  354. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog +0 -0
  355. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog +0 -0
  356. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog +0 -0
  357. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate +0 -2
  358. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog +0 -0
  359. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog +0 -0
  360. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog +0 -0
  361. package/build/CMakeFiles/3.23.0-rc1/VCTargetsPath.txt +0 -1
  362. package/build/CMakeFiles/3.23.0-rc1/VCTargetsPath.vcxproj +0 -31
  363. package/build/CMakeFiles/3.23.0-rc1/x64/Debug/VCTargetsPath.recipe +0 -11
  364. package/build/CMakeFiles/3.23.0-rc1/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate +0 -2
  365. package/build/CMakeFiles/41bcd16856091d4a38fd1f71fbe2f202/generate.stamp.rule +0 -1
  366. package/build/CMakeFiles/CMakeError.log +0 -108
  367. package/build/CMakeFiles/CMakeOutput.log +0 -413
  368. package/build/CMakeFiles/TargetDirectories.txt +0 -4
  369. package/build/CMakeFiles/cmake.check_cache +0 -1
  370. package/build/CMakeFiles/generate.stamp +0 -1
  371. package/build/CMakeFiles/generate.stamp.depend +0 -28
  372. package/build/CMakeFiles/generate.stamp.list +0 -1
  373. package/build/Raylib.dir/Release/Raylib.dll.recipe +0 -14
  374. package/build/Raylib.dir/Release/Raylib.tlog/CL.command.1.tlog +0 -0
  375. package/build/Raylib.dir/Release/Raylib.tlog/CL.read.1.tlog +0 -0
  376. package/build/Raylib.dir/Release/Raylib.tlog/CL.write.1.tlog +0 -0
  377. package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.command.1.tlog +0 -10
  378. package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.read.1.tlog +0 -27
  379. package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.write.1.tlog +0 -2
  380. package/build/Raylib.dir/Release/Raylib.tlog/Raylib.lastbuildstate +0 -2
  381. package/build/Raylib.dir/Release/Raylib.tlog/Raylib.write.1u.tlog +0 -0
  382. package/build/Raylib.dir/Release/Raylib.tlog/link.command.1.tlog +0 -0
  383. package/build/Raylib.dir/Release/Raylib.tlog/link.read.1.tlog +0 -0
  384. package/build/Raylib.dir/Release/Raylib.tlog/link.write.1.tlog +0 -0
  385. package/build/Raylib.dir/Release/raudio.obj +0 -0
  386. package/build/Raylib.dir/Release/rcore.obj +0 -0
  387. package/build/Raylib.dir/Release/rglfw.obj +0 -0
  388. package/build/Raylib.dir/Release/rmodels.obj +0 -0
  389. package/build/Raylib.dir/Release/rshapes.obj +0 -0
  390. package/build/Raylib.dir/Release/rtext.obj +0 -0
  391. package/build/Raylib.dir/Release/rtextures.obj +0 -0
  392. package/build/Raylib.dir/Release/utils.obj +0 -0
  393. package/build/Raylib.vcxproj +0 -358
  394. package/build/Raylib.vcxproj.filters +0 -37
  395. package/build/Release/Raylib.dll +0 -0
  396. package/build/Release/Raylib.exp +0 -0
  397. package/build/Release/Raylib.lib +0 -0
  398. package/build/Release/koffi.exp +0 -0
  399. package/build/Release/koffi.lib +0 -0
  400. package/build/Release/koffi.node +0 -0
  401. package/build/ZERO_CHECK.vcxproj +0 -176
  402. package/build/ZERO_CHECK.vcxproj.filters +0 -13
  403. package/build/cmake_install.cmake +0 -44
  404. package/build/koffi.dir/Release/call_arm64.obj +0 -0
  405. package/build/koffi.dir/Release/call_x64_sysv.obj +0 -0
  406. package/build/koffi.dir/Release/call_x64_win.obj +0 -0
  407. package/build/koffi.dir/Release/call_x64_win_fwd.obj +0 -0
  408. package/build/koffi.dir/Release/call_x86.obj +0 -0
  409. package/build/koffi.dir/Release/ffi.obj +0 -0
  410. package/build/koffi.dir/Release/koffi.node.recipe +0 -14
  411. package/build/koffi.dir/Release/koffi.tlog/CL.command.1.tlog +0 -0
  412. package/build/koffi.dir/Release/koffi.tlog/CL.read.1.tlog +0 -0
  413. package/build/koffi.dir/Release/koffi.tlog/CL.write.1.tlog +0 -0
  414. package/build/koffi.dir/Release/koffi.tlog/CustomBuild.command.1.tlog +0 -10
  415. package/build/koffi.dir/Release/koffi.tlog/CustomBuild.read.1.tlog +0 -27
  416. package/build/koffi.dir/Release/koffi.tlog/CustomBuild.write.1.tlog +0 -2
  417. package/build/koffi.dir/Release/koffi.tlog/Masm.read.1u.tlog +0 -0
  418. package/build/koffi.dir/Release/koffi.tlog/Masm.write.1u.tlog +0 -0
  419. package/build/koffi.dir/Release/koffi.tlog/koffi.lastbuildstate +0 -2
  420. package/build/koffi.dir/Release/koffi.tlog/koffi.write.1u.tlog +0 -0
  421. package/build/koffi.dir/Release/koffi.tlog/link.command.1.tlog +0 -0
  422. package/build/koffi.dir/Release/koffi.tlog/link.read.1.tlog +0 -0
  423. package/build/koffi.dir/Release/koffi.tlog/link.write.1.tlog +0 -0
  424. package/build/koffi.dir/Release/libcc.obj +0 -0
  425. package/build/koffi.dir/Release/util.obj +0 -0
  426. package/build/koffi.dir/Release/win_delay_load_hook.obj +0 -0
  427. package/build/koffi.sln +0 -67
  428. package/build/koffi.vcxproj +0 -363
  429. package/build/koffi.vcxproj.filters +0 -40
  430. package/build/x64/Release/ALL_BUILD/ALL_BUILD.recipe +0 -20
  431. package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/ALL_BUILD.lastbuildstate +0 -2
  432. package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.command.1.tlog +0 -10
  433. package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.read.1.tlog +0 -27
  434. package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.write.1.tlog +0 -2
  435. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.recipe +0 -11
  436. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog +0 -10
  437. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog +0 -28
  438. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog +0 -2
  439. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate +0 -2
@@ -1,363 +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>{CFDA8F0F-5168-3E8E-8779-698AF1761172}</ProjectGuid>
26
- <Keyword>Win32Proj</Keyword>
27
- <WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
28
- <Platform>x64</Platform>
29
- <ProjectName>koffi</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'">koffi.dir\Debug\</IntDir>
65
- <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">koffi</TargetName>
66
- <TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.node</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'">koffi.dir\Release\</IntDir>
71
- <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">koffi</TargetName>
72
- <TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'">.node</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'">koffi.dir\MinSizeRel\</IntDir>
77
- <TargetName Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">koffi</TargetName>
78
- <TargetExt Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">.node</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'">koffi.dir\RelWithDebInfo\</IntDir>
83
- <TargetName Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">koffi</TargetName>
84
- <TargetExt Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">.node</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\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
91
- <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
92
- <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
93
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
94
- <DisableSpecificWarnings>4200</DisableSpecificWarnings>
95
- <ExceptionHandling>Sync</ExceptionHandling>
96
- <InlineFunctionExpansion>Disabled</InlineFunctionExpansion>
97
- <LanguageStandard>stdcpp17</LanguageStandard>
98
- <Optimization>Disabled</Optimization>
99
- <PrecompiledHeader>NotUsing</PrecompiledHeader>
100
- <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
101
- <RuntimeTypeInfo>true</RuntimeTypeInfo>
102
- <UseFullPaths>false</UseFullPaths>
103
- <WarningLevel>Level3</WarningLevel>
104
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="Debug";koffi_EXPORTS</PreprocessorDefinitions>
105
- <ObjectFileName>$(IntDir)</ObjectFileName>
106
- </ClCompile>
107
- <ResourceCompile>
108
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR=\"Debug\";koffi_EXPORTS</PreprocessorDefinitions>
109
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
110
- </ResourceCompile>
111
- <MASM>
112
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="Debug";koffi_EXPORTS</PreprocessorDefinitions>
113
- <IncludePaths>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(IncludePaths)</IncludePaths>
114
- </MASM>
115
- <Midl>
116
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
117
- <OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
118
- <HeaderFileName>%(Filename).h</HeaderFileName>
119
- <TypeLibraryName>%(Filename).tlb</TypeLibraryName>
120
- <InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
121
- <ProxyFileName>%(Filename)_p.c</ProxyFileName>
122
- </Midl>
123
- <Link>
124
- <AdditionalDependencies>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\win-x64\node.lib;ws2_32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
125
- <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
126
- <DelayLoadDLLs>NODE.EXE</DelayLoadDLLs>
127
- <GenerateDebugInformation>true</GenerateDebugInformation>
128
- <IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
129
- <ImportLibrary>C:/Users/Niels/Code/luigi/koffi/build/Debug/koffi.lib</ImportLibrary>
130
- <ProgramDataBaseFile>C:/Users/Niels/Code/luigi/koffi/build/Debug/koffi.pdb</ProgramDataBaseFile>
131
- <SubSystem>Console</SubSystem>
132
- </Link>
133
- <ProjectReference>
134
- <LinkLibraryDependencies>false</LinkLibraryDependencies>
135
- </ProjectReference>
136
- </ItemDefinitionGroup>
137
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
138
- <ClCompile>
139
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
140
- <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
141
- <DisableSpecificWarnings>4200</DisableSpecificWarnings>
142
- <ExceptionHandling>Sync</ExceptionHandling>
143
- <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
144
- <LanguageStandard>stdcpp17</LanguageStandard>
145
- <Optimization>MaxSpeed</Optimization>
146
- <PrecompiledHeader>NotUsing</PrecompiledHeader>
147
- <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
148
- <RuntimeTypeInfo>true</RuntimeTypeInfo>
149
- <UseFullPaths>false</UseFullPaths>
150
- <WarningLevel>Level3</WarningLevel>
151
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="Release";koffi_EXPORTS</PreprocessorDefinitions>
152
- <ObjectFileName>$(IntDir)</ObjectFileName>
153
- <DebugInformationFormat>
154
- </DebugInformationFormat>
155
- </ClCompile>
156
- <ResourceCompile>
157
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR=\"Release\";koffi_EXPORTS</PreprocessorDefinitions>
158
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
159
- </ResourceCompile>
160
- <MASM>
161
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="Release";koffi_EXPORTS</PreprocessorDefinitions>
162
- <IncludePaths>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(IncludePaths)</IncludePaths>
163
- </MASM>
164
- <Midl>
165
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
166
- <OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
167
- <HeaderFileName>%(Filename).h</HeaderFileName>
168
- <TypeLibraryName>%(Filename).tlb</TypeLibraryName>
169
- <InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
170
- <ProxyFileName>%(Filename)_p.c</ProxyFileName>
171
- </Midl>
172
- <Link>
173
- <AdditionalDependencies>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\win-x64\node.lib;ws2_32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
174
- <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
175
- <DelayLoadDLLs>NODE.EXE</DelayLoadDLLs>
176
- <GenerateDebugInformation>false</GenerateDebugInformation>
177
- <IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
178
- <ImportLibrary>C:/Users/Niels/Code/luigi/koffi/build/Release/koffi.lib</ImportLibrary>
179
- <ProgramDataBaseFile>C:/Users/Niels/Code/luigi/koffi/build/Release/koffi.pdb</ProgramDataBaseFile>
180
- <SubSystem>Console</SubSystem>
181
- </Link>
182
- <ProjectReference>
183
- <LinkLibraryDependencies>false</LinkLibraryDependencies>
184
- </ProjectReference>
185
- </ItemDefinitionGroup>
186
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">
187
- <ClCompile>
188
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
189
- <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
190
- <DisableSpecificWarnings>4200</DisableSpecificWarnings>
191
- <ExceptionHandling>Sync</ExceptionHandling>
192
- <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
193
- <LanguageStandard>stdcpp17</LanguageStandard>
194
- <Optimization>MinSpace</Optimization>
195
- <PrecompiledHeader>NotUsing</PrecompiledHeader>
196
- <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
197
- <RuntimeTypeInfo>true</RuntimeTypeInfo>
198
- <UseFullPaths>false</UseFullPaths>
199
- <WarningLevel>Level3</WarningLevel>
200
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="MinSizeRel";koffi_EXPORTS</PreprocessorDefinitions>
201
- <ObjectFileName>$(IntDir)</ObjectFileName>
202
- <DebugInformationFormat>
203
- </DebugInformationFormat>
204
- </ClCompile>
205
- <ResourceCompile>
206
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR=\"MinSizeRel\";koffi_EXPORTS</PreprocessorDefinitions>
207
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
208
- </ResourceCompile>
209
- <MASM>
210
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="MinSizeRel";koffi_EXPORTS</PreprocessorDefinitions>
211
- <IncludePaths>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(IncludePaths)</IncludePaths>
212
- </MASM>
213
- <Midl>
214
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
215
- <OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
216
- <HeaderFileName>%(Filename).h</HeaderFileName>
217
- <TypeLibraryName>%(Filename).tlb</TypeLibraryName>
218
- <InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
219
- <ProxyFileName>%(Filename)_p.c</ProxyFileName>
220
- </Midl>
221
- <Link>
222
- <AdditionalDependencies>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\win-x64\node.lib;ws2_32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
223
- <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
224
- <DelayLoadDLLs>NODE.EXE</DelayLoadDLLs>
225
- <GenerateDebugInformation>false</GenerateDebugInformation>
226
- <IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
227
- <ImportLibrary>C:/Users/Niels/Code/luigi/koffi/build/MinSizeRel/koffi.lib</ImportLibrary>
228
- <ProgramDataBaseFile>C:/Users/Niels/Code/luigi/koffi/build/MinSizeRel/koffi.pdb</ProgramDataBaseFile>
229
- <SubSystem>Console</SubSystem>
230
- </Link>
231
- <ProjectReference>
232
- <LinkLibraryDependencies>false</LinkLibraryDependencies>
233
- </ProjectReference>
234
- </ItemDefinitionGroup>
235
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">
236
- <ClCompile>
237
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
238
- <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
239
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
240
- <DisableSpecificWarnings>4200</DisableSpecificWarnings>
241
- <ExceptionHandling>Sync</ExceptionHandling>
242
- <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
243
- <LanguageStandard>stdcpp17</LanguageStandard>
244
- <Optimization>MaxSpeed</Optimization>
245
- <PrecompiledHeader>NotUsing</PrecompiledHeader>
246
- <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
247
- <RuntimeTypeInfo>true</RuntimeTypeInfo>
248
- <UseFullPaths>false</UseFullPaths>
249
- <WarningLevel>Level3</WarningLevel>
250
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="RelWithDebInfo";koffi_EXPORTS</PreprocessorDefinitions>
251
- <ObjectFileName>$(IntDir)</ObjectFileName>
252
- </ClCompile>
253
- <ResourceCompile>
254
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR=\"RelWithDebInfo\";koffi_EXPORTS</PreprocessorDefinitions>
255
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
256
- </ResourceCompile>
257
- <MASM>
258
- <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_INTDIR="RelWithDebInfo";koffi_EXPORTS</PreprocessorDefinitions>
259
- <IncludePaths>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(IncludePaths)</IncludePaths>
260
- </MASM>
261
- <Midl>
262
- <AdditionalIncludeDirectories>C:\Users\Niels\Code\luigi\koffi\..;C:\Users\Niels\.cmake-js\node-x64\v16.14.0\include\node;C:\Users\Niels\Code\luigi\koffi\..\vendor\node-addon-api;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
263
- <OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
264
- <HeaderFileName>%(Filename).h</HeaderFileName>
265
- <TypeLibraryName>%(Filename).tlb</TypeLibraryName>
266
- <InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
267
- <ProxyFileName>%(Filename)_p.c</ProxyFileName>
268
- </Midl>
269
- <Link>
270
- <AdditionalDependencies>C:\Users\Niels\.cmake-js\node-x64\v16.14.0\win-x64\node.lib;ws2_32.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
271
- <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
272
- <DelayLoadDLLs>NODE.EXE</DelayLoadDLLs>
273
- <GenerateDebugInformation>true</GenerateDebugInformation>
274
- <IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
275
- <ImportLibrary>C:/Users/Niels/Code/luigi/koffi/build/RelWithDebInfo/koffi.lib</ImportLibrary>
276
- <ProgramDataBaseFile>C:/Users/Niels/Code/luigi/koffi/build/RelWithDebInfo/koffi.pdb</ProgramDataBaseFile>
277
- <SubSystem>Console</SubSystem>
278
- </Link>
279
- <ProjectReference>
280
- <LinkLibraryDependencies>false</LinkLibraryDependencies>
281
- </ProjectReference>
282
- </ItemDefinitionGroup>
283
- <ItemGroup>
284
- <CustomBuild Include="C:\Users\Niels\Code\luigi\koffi\CMakeLists.txt">
285
- <UseUtf8Encoding>Always</UseUtf8Encoding>
286
- <Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</Message>
287
- <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
288
- "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
289
- if %errorlevel% neq 0 goto :cmEnd
290
- :cmEnd
291
- endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
292
- :cmErrorLevel
293
- exit /b %1
294
- :cmDone
295
- if %errorlevel% neq 0 goto :VCEnd</Command>
296
- <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>
297
- <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
298
- <LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
299
- <Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</Message>
300
- <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
301
- "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
302
- if %errorlevel% neq 0 goto :cmEnd
303
- :cmEnd
304
- endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
305
- :cmErrorLevel
306
- exit /b %1
307
- :cmDone
308
- if %errorlevel% neq 0 goto :VCEnd</Command>
309
- <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>
310
- <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
311
- <LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
312
- <Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</Message>
313
- <Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">setlocal
314
- "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
315
- if %errorlevel% neq 0 goto :cmEnd
316
- :cmEnd
317
- endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
318
- :cmErrorLevel
319
- exit /b %1
320
- :cmDone
321
- if %errorlevel% neq 0 goto :VCEnd</Command>
322
- <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>
323
- <Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
324
- <LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">false</LinkObjects>
325
- <Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">Building Custom Rule C:/Users/Niels/Code/luigi/koffi/CMakeLists.txt</Message>
326
- <Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">setlocal
327
- "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
328
- if %errorlevel% neq 0 goto :cmEnd
329
- :cmEnd
330
- endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
331
- :cmErrorLevel
332
- exit /b %1
333
- :cmDone
334
- if %errorlevel% neq 0 goto :VCEnd</Command>
335
- <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>
336
- <Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">C:\Users\Niels\Code\luigi\koffi\build\CMakeFiles\generate.stamp</Outputs>
337
- <LinkObjects Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">false</LinkObjects>
338
- </CustomBuild>
339
- </ItemGroup>
340
- <ItemGroup>
341
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\call_arm64.cc" />
342
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\call_x64_sysv.cc" />
343
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\call_x64_win.cc" />
344
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\call_x86.cc" />
345
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\ffi.cc" />
346
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\util.cc" />
347
- <ClCompile Include="C:\Users\Niels\Code\luigi\vendor\libcc\libcc.cc" />
348
- <MASM Include="C:\Users\Niels\Code\luigi\koffi\src\call_x64_win_fwd.asm" />
349
- <ClCompile Include="C:\Users\Niels\Code\luigi\node_modules\cmake-js\lib\cpp\win_delay_load_hook.cc" />
350
- </ItemGroup>
351
- <ItemGroup>
352
- <ProjectReference Include="C:\Users\Niels\Code\luigi\koffi\build\ZERO_CHECK.vcxproj">
353
- <Project>{88D8D3DA-3A05-3927-9D00-34B7FC393341}</Project>
354
- <Name>ZERO_CHECK</Name>
355
- <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
356
- <CopyToOutputDirectory>Never</CopyToOutputDirectory>
357
- </ProjectReference>
358
- </ItemGroup>
359
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
360
- <ImportGroup Label="ExtensionTargets">
361
- <Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
362
- </ImportGroup>
363
- </Project>
@@ -1,40 +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\koffi\src\call_arm64.cc">
5
- <Filter>Source Files</Filter>
6
- </ClCompile>
7
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\call_x64_sysv.cc">
8
- <Filter>Source Files</Filter>
9
- </ClCompile>
10
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\call_x64_win.cc">
11
- <Filter>Source Files</Filter>
12
- </ClCompile>
13
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\call_x86.cc">
14
- <Filter>Source Files</Filter>
15
- </ClCompile>
16
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\ffi.cc">
17
- <Filter>Source Files</Filter>
18
- </ClCompile>
19
- <ClCompile Include="C:\Users\Niels\Code\luigi\koffi\src\util.cc">
20
- <Filter>Source Files</Filter>
21
- </ClCompile>
22
- <ClCompile Include="C:\Users\Niels\Code\luigi\vendor\libcc\libcc.cc">
23
- <Filter>Source Files</Filter>
24
- </ClCompile>
25
- <ClCompile Include="C:\Users\Niels\Code\luigi\node_modules\cmake-js\lib\cpp\win_delay_load_hook.cc">
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
- <MASM Include="C:\Users\Niels\Code\luigi\koffi\src\call_x64_win_fwd.asm" />
34
- </ItemGroup>
35
- <ItemGroup>
36
- <Filter Include="Source Files">
37
- <UniqueIdentifier>{D76DA0E6-CD9C-300F-9EE3-AB971153E7D2}</UniqueIdentifier>
38
- </Filter>
39
- </ItemGroup>
40
- </Project>
@@ -1,20 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project>
3
- <ProjectOutputs>
4
- <ProjectOutput>
5
- <FullPath>C:\Users\Niels\Code\luigi\koffi\build\x64\Release\ZERO_CHECK</FullPath>
6
- </ProjectOutput>
7
- <ProjectOutput>
8
- <FullPath>C:\Users\Niels\Code\luigi\koffi\build\Release\Raylib.dll</FullPath>
9
- </ProjectOutput>
10
- <ProjectOutput>
11
- <FullPath>C:\Users\Niels\Code\luigi\koffi\build\Release\koffi.node</FullPath>
12
- </ProjectOutput>
13
- <ProjectOutput>
14
- <FullPath>C:\Users\Niels\Code\luigi\koffi\build\x64\Release\ALL_BUILD</FullPath>
15
- </ProjectOutput>
16
- </ProjectOutputs>
17
- <ContentFiles />
18
- <SatelliteDlls />
19
- <NonRecipeFileRefs />
20
- </Project>
@@ -1,2 +0,0 @@
1
- PlatformToolSet=v142:VCToolArchitecture=Native64Bit:VCToolsVersion=14.29.30133:VCServicingVersionCrtHeaders=14.29.30136:TargetPlatformVersion=10.0.19041.0:
2
- Release|x64|C:\Users\Niels\Code\luigi\koffi\build\|
@@ -1,10 +0,0 @@
1
- ^C:\USERS\NIELS\CODE\LUIGI\KOFFI\CMAKELISTS.TXT
2
- setlocal
3
- "C:\Program Files\CMake\bin\cmake.exe" -SC:/Users/Niels/Code/luigi/koffi -BC:/Users/Niels/Code/luigi/koffi/build --check-stamp-file C:/Users/Niels/Code/luigi/koffi/build/CMakeFiles/generate.stamp
4
- if %errorlevel% neq 0 goto :cmEnd
5
- :cmEnd
6
- endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
7
- :cmErrorLevel
8
- exit /b %1
9
- :cmDone
10
- if %errorlevel% neq 0 goto :VCEnd
@@ -1,27 +0,0 @@
1
- ^C:\USERS\NIELS\CODE\LUIGI\KOFFI\CMAKELISTS.TXT
2
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEASMINFORMATION.CMAKE
3
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEASM_MASMINFORMATION.CMAKE
4
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECINFORMATION.CMAKE
5
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECXXINFORMATION.CMAKE
6
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECOMMONLANGUAGEINCLUDE.CMAKE
7
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEGENERICSYSTEM.CMAKE
8
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEINITIALIZECONFIGS.CMAKE
9
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKELANGUAGEINFORMATION.CMAKE
10
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKERCINFORMATION.CMAKE
11
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKESYSTEMSPECIFICINFORMATION.CMAKE
12
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKESYSTEMSPECIFICINITIALIZE.CMAKE
13
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\CMAKECOMMONCOMPILERMACROS.CMAKE
14
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-ASM.CMAKE
15
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-C.CMAKE
16
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-CXX.CMAKE
17
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC-C.CMAKE
18
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC-CXX.CMAKE
19
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC.CMAKE
20
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS.CMAKE
21
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWSPATHS.CMAKE
22
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKEASMCOMPILER.CMAKE
23
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKEASM_MASMCOMPILER.CMAKE
24
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKECCOMPILER.CMAKE
25
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKECXXCOMPILER.CMAKE
26
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKERCCOMPILER.CMAKE
27
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKESYSTEM.CMAKE
@@ -1,2 +0,0 @@
1
- ^C:\USERS\NIELS\CODE\LUIGI\KOFFI\CMAKELISTS.TXT
2
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\GENERATE.STAMP
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project>
3
- <ProjectOutputs>
4
- <ProjectOutput>
5
- <FullPath>C:\Users\Niels\Code\luigi\koffi\build\x64\Release\ZERO_CHECK</FullPath>
6
- </ProjectOutput>
7
- </ProjectOutputs>
8
- <ContentFiles />
9
- <SatelliteDlls />
10
- <NonRecipeFileRefs />
11
- </Project>
@@ -1,10 +0,0 @@
1
- ^C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\41BCD16856091D4A38FD1F71FBE2F202\GENERATE.STAMP.RULE
2
- setlocal
3
- "C:\Program Files\CMake\bin\cmake.exe" -SC:/Users/Niels/Code/luigi/koffi -BC:/Users/Niels/Code/luigi/koffi/build --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/Niels/Code/luigi/koffi/build/koffi.sln
4
- if %errorlevel% neq 0 goto :cmEnd
5
- :cmEnd
6
- endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
7
- :cmErrorLevel
8
- exit /b %1
9
- :cmDone
10
- if %errorlevel% neq 0 goto :VCEnd
@@ -1,28 +0,0 @@
1
- ^C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\41BCD16856091D4A38FD1F71FBE2F202\GENERATE.STAMP.RULE
2
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEASMINFORMATION.CMAKE
3
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEASM_MASMINFORMATION.CMAKE
4
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECINFORMATION.CMAKE
5
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECXXINFORMATION.CMAKE
6
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKECOMMONLANGUAGEINCLUDE.CMAKE
7
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEGENERICSYSTEM.CMAKE
8
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKEINITIALIZECONFIGS.CMAKE
9
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKELANGUAGEINFORMATION.CMAKE
10
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKERCINFORMATION.CMAKE
11
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKESYSTEMSPECIFICINFORMATION.CMAKE
12
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\CMAKESYSTEMSPECIFICINITIALIZE.CMAKE
13
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\CMAKECOMMONCOMPILERMACROS.CMAKE
14
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-ASM.CMAKE
15
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-C.CMAKE
16
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\COMPILER\MSVC-CXX.CMAKE
17
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC-C.CMAKE
18
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC-CXX.CMAKE
19
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS-MSVC.CMAKE
20
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWS.CMAKE
21
- C:\PROGRAM FILES\CMAKE\SHARE\CMAKE-3.23\MODULES\PLATFORM\WINDOWSPATHS.CMAKE
22
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\CMAKELISTS.TXT
23
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKEASMCOMPILER.CMAKE
24
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKEASM_MASMCOMPILER.CMAKE
25
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKECCOMPILER.CMAKE
26
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKECXXCOMPILER.CMAKE
27
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKERCCOMPILER.CMAKE
28
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\3.23.0-RC1\CMAKESYSTEM.CMAKE
@@ -1,2 +0,0 @@
1
- ^C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\41BCD16856091D4A38FD1F71FBE2F202\GENERATE.STAMP.RULE
2
- C:\USERS\NIELS\CODE\LUIGI\KOFFI\BUILD\CMAKEFILES\GENERATE.STAMP
@@ -1,2 +0,0 @@
1
- PlatformToolSet=v142:VCToolArchitecture=Native64Bit:VCToolsVersion=14.29.30133:VCServicingVersionCrtHeaders=14.29.30136:TargetPlatformVersion=10.0.19041.0:
2
- Release|x64|C:\Users\Niels\Code\luigi\koffi\build\|