@shd101wyy/yo 0.0.2
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/LICENSE.md +17 -0
- package/README.md +80 -0
- package/out/cjs/index.cjs +51 -0
- package/out/cjs/yo-cli.cjs +2158 -0
- package/out/esm/index.mjs +51 -0
- package/out/types/src/codegen/async/runtime.d.ts +2 -0
- package/out/types/src/codegen/async/state-code-gen.d.ts +10 -0
- package/out/types/src/codegen/async/state-machine.d.ts +13 -0
- package/out/types/src/codegen/c/collection.d.ts +3 -0
- package/out/types/src/codegen/codegen-c.d.ts +12 -0
- package/out/types/src/codegen/constants.d.ts +3 -0
- package/out/types/src/codegen/expressions/array.d.ts +4 -0
- package/out/types/src/codegen/expressions/generation.d.ts +11 -0
- package/out/types/src/codegen/expressions/index.d.ts +2 -0
- package/out/types/src/codegen/functions/collection.d.ts +5 -0
- package/out/types/src/codegen/functions/context.d.ts +57 -0
- package/out/types/src/codegen/functions/generation.d.ts +25 -0
- package/out/types/src/codegen/functions/index.d.ts +2 -0
- package/out/types/src/codegen/index.d.ts +20 -0
- package/out/types/src/codegen/parallelism/runtime.d.ts +2 -0
- package/out/types/src/codegen/types/collection.d.ts +8 -0
- package/out/types/src/codegen/types/generation.d.ts +13 -0
- package/out/types/src/codegen/types/index.d.ts +2 -0
- package/out/types/src/codegen/utils/fixup.d.ts +2 -0
- package/out/types/src/codegen/utils/index.d.ts +77 -0
- package/out/types/src/codegen/values/index.d.ts +1 -0
- package/out/types/src/emitter.d.ts +11 -0
- package/out/types/src/env.d.ts +85 -0
- package/out/types/src/error.d.ts +45 -0
- package/out/types/src/evaluator/async/await-analysis-types.d.ts +23 -0
- package/out/types/src/evaluator/async/await-analysis.d.ts +5 -0
- package/out/types/src/evaluator/builtins/alignof.d.ts +8 -0
- package/out/types/src/evaluator/builtins/and_or.d.ts +8 -0
- package/out/types/src/evaluator/builtins/arc_fns.d.ts +58 -0
- package/out/types/src/evaluator/builtins/array_fns.d.ts +0 -0
- package/out/types/src/evaluator/builtins/as.d.ts +8 -0
- package/out/types/src/evaluator/builtins/async_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_assert.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_boolean_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_expect_error.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_list_fns.d.ts +33 -0
- package/out/types/src/evaluator/builtins/compt_print.d.ts +8 -0
- package/out/types/src/evaluator/builtins/compt_string_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/consume.d.ts +8 -0
- package/out/types/src/evaluator/builtins/drop.d.ts +8 -0
- package/out/types/src/evaluator/builtins/dup.d.ts +8 -0
- package/out/types/src/evaluator/builtins/expr_fns.d.ts +33 -0
- package/out/types/src/evaluator/builtins/future_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/gc.d.ts +8 -0
- package/out/types/src/evaluator/builtins/gensym.d.ts +8 -0
- package/out/types/src/evaluator/builtins/impl_constraint.d.ts +8 -0
- package/out/types/src/evaluator/builtins/macro_expand.d.ts +8 -0
- package/out/types/src/evaluator/builtins/numeric_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/panic.d.ts +8 -0
- package/out/types/src/evaluator/builtins/ptr_fns.d.ts +8 -0
- package/out/types/src/evaluator/builtins/quote.d.ts +13 -0
- package/out/types/src/evaluator/builtins/rc.d.ts +8 -0
- package/out/types/src/evaluator/builtins/sizeof.d.ts +8 -0
- package/out/types/src/evaluator/builtins/the.d.ts +8 -0
- package/out/types/src/evaluator/builtins/type_fns.d.ts +28 -0
- package/out/types/src/evaluator/builtins/va_start.d.ts +8 -0
- package/out/types/src/evaluator/builtins/var_fns.d.ts +18 -0
- package/out/types/src/evaluator/calls/array.d.ts +13 -0
- package/out/types/src/evaluator/calls/array_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/closure_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/compt_function.d.ts +19 -0
- package/out/types/src/evaluator/calls/compt_list_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/function.d.ts +16 -0
- package/out/types/src/evaluator/calls/function_type.d.ts +15 -0
- package/out/types/src/evaluator/calls/helper.d.ts +42 -0
- package/out/types/src/evaluator/calls/iso.d.ts +15 -0
- package/out/types/src/evaluator/calls/module_type.d.ts +11 -0
- package/out/types/src/evaluator/calls/numeric_type.d.ts +15 -0
- package/out/types/src/evaluator/calls/pointer.d.ts +8 -0
- package/out/types/src/evaluator/calls/pointer_type.d.ts +14 -0
- package/out/types/src/evaluator/calls/type.d.ts +12 -0
- package/out/types/src/evaluator/context.d.ts +169 -0
- package/out/types/src/evaluator/exprs/_expr.d.ts +8 -0
- package/out/types/src/evaluator/exprs/assignment.d.ts +9 -0
- package/out/types/src/evaluator/exprs/begin.d.ts +10 -0
- package/out/types/src/evaluator/exprs/binding.d.ts +12 -0
- package/out/types/src/evaluator/exprs/c_include.d.ts +8 -0
- package/out/types/src/evaluator/exprs/cond.d.ts +8 -0
- package/out/types/src/evaluator/exprs/destructuring_assignment.d.ts +33 -0
- package/out/types/src/evaluator/exprs/exists.d.ts +0 -0
- package/out/types/src/evaluator/exprs/expr.d.ts +9 -0
- package/out/types/src/evaluator/exprs/extern.d.ts +8 -0
- package/out/types/src/evaluator/exprs/identifer_and_operator.d.ts +9 -0
- package/out/types/src/evaluator/exprs/import.d.ts +9 -0
- package/out/types/src/evaluator/exprs/initialization_assignment.d.ts +8 -0
- package/out/types/src/evaluator/exprs/match.d.ts +8 -0
- package/out/types/src/evaluator/exprs/open.d.ts +8 -0
- package/out/types/src/evaluator/exprs/property_access.d.ts +8 -0
- package/out/types/src/evaluator/exprs/recur.d.ts +8 -0
- package/out/types/src/evaluator/exprs/subtype_of.d.ts +21 -0
- package/out/types/src/evaluator/exprs/test.d.ts +8 -0
- package/out/types/src/evaluator/exprs/typeof.d.ts +8 -0
- package/out/types/src/evaluator/exprs/while.d.ts +8 -0
- package/out/types/src/evaluator/index.d.ts +26 -0
- package/out/types/src/evaluator/types/array.d.ts +8 -0
- package/out/types/src/evaluator/types/closure.d.ts +8 -0
- package/out/types/src/evaluator/types/compt_list.d.ts +8 -0
- package/out/types/src/evaluator/types/concrete_module.d.ts +8 -0
- package/out/types/src/evaluator/types/dyn.d.ts +8 -0
- package/out/types/src/evaluator/types/enum.d.ts +8 -0
- package/out/types/src/evaluator/types/expr_synthesizer.d.ts +14 -0
- package/out/types/src/evaluator/types/field.d.ts +14 -0
- package/out/types/src/evaluator/types/fn_module.d.ts +8 -0
- package/out/types/src/evaluator/types/function.d.ts +58 -0
- package/out/types/src/evaluator/types/future_module.d.ts +8 -0
- package/out/types/src/evaluator/types/module.d.ts +19 -0
- package/out/types/src/evaluator/types/newtype.d.ts +8 -0
- package/out/types/src/evaluator/types/object.d.ts +8 -0
- package/out/types/src/evaluator/types/proofs.d.ts +0 -0
- package/out/types/src/evaluator/types/slice.d.ts +8 -0
- package/out/types/src/evaluator/types/struct.d.ts +8 -0
- package/out/types/src/evaluator/types/synthesizer.d.ts +16 -0
- package/out/types/src/evaluator/types/tuple.d.ts +18 -0
- package/out/types/src/evaluator/types/union.d.ts +8 -0
- package/out/types/src/evaluator/types/utils.d.ts +71 -0
- package/out/types/src/evaluator/types/validation.d.ts +3 -0
- package/out/types/src/evaluator/utils/array-utils.d.ts +15 -0
- package/out/types/src/evaluator/utils/closure.d.ts +35 -0
- package/out/types/src/evaluator/utils.d.ts +4 -0
- package/out/types/src/evaluator/values/anonymous_function.d.ts +8 -0
- package/out/types/src/evaluator/values/anonymous_module.d.ts +17 -0
- package/out/types/src/evaluator/values/anonymous_struct.d.ts +8 -0
- package/out/types/src/evaluator/values/array.d.ts +8 -0
- package/out/types/src/evaluator/values/boolean.d.ts +3 -0
- package/out/types/src/evaluator/values/char.d.ts +3 -0
- package/out/types/src/evaluator/values/compt_list.d.ts +8 -0
- package/out/types/src/evaluator/values/dyn.d.ts +8 -0
- package/out/types/src/evaluator/values/float.d.ts +4 -0
- package/out/types/src/evaluator/values/integer.d.ts +4 -0
- package/out/types/src/evaluator/values/module.d.ts +58 -0
- package/out/types/src/evaluator/values/string.d.ts +3 -0
- package/out/types/src/evaluator/values/tuple.d.ts +32 -0
- package/out/types/src/expr.d.ts +456 -0
- package/out/types/src/function-value.d.ts +42 -0
- package/out/types/src/index.d.ts +4 -0
- package/out/types/src/lexer.d.ts +2 -0
- package/out/types/src/logger.d.ts +1 -0
- package/out/types/src/module-manager.d.ts +30 -0
- package/out/types/src/naming-checker.d.ts +4 -0
- package/out/types/src/parser.d.ts +33 -0
- package/out/types/src/test-runner.d.ts +30 -0
- package/out/types/src/tests/codegen.test.d.ts +1 -0
- package/out/types/src/tests/fixme.test.d.ts +1 -0
- package/out/types/src/tests/module-manager.test.d.ts +1 -0
- package/out/types/src/tests/parser.test.d.ts +1 -0
- package/out/types/src/tests/sample.test.d.ts +0 -0
- package/out/types/src/tests/std.test.d.ts +1 -0
- package/out/types/src/token.d.ts +40 -0
- package/out/types/src/type-value.d.ts +7 -0
- package/out/types/src/types/compatibility.d.ts +16 -0
- package/out/types/src/types/creators.d.ts +73 -0
- package/out/types/src/types/definitions.d.ts +218 -0
- package/out/types/src/types/guards.d.ts +70 -0
- package/out/types/src/types/hierarchy.d.ts +4 -0
- package/out/types/src/types/index.d.ts +7 -0
- package/out/types/src/types/module_field.d.ts +2 -0
- package/out/types/src/types/tags.d.ts +45 -0
- package/out/types/src/types/utils.d.ts +50 -0
- package/out/types/src/unit-value.d.ts +7 -0
- package/out/types/src/utils.d.ts +6 -0
- package/out/types/src/value-tag.d.ts +29 -0
- package/out/types/src/value.d.ts +110 -0
- package/out/types/src/yo-cli.d.ts +1 -0
- package/out/types/tsconfig.tsbuildinfo +1 -0
- package/package.json +57 -0
- package/scripts/check-liburing.js +76 -0
- package/std/alg/hash.yo +50 -0
- package/std/allocator.yo +113 -0
- package/std/allocators/c_allocator.yo +118 -0
- package/std/async.yo +13 -0
- package/std/collections/array_list.yo +415 -0
- package/std/collections/hash_map.yo +482 -0
- package/std/collections/hash_set.yo +706 -0
- package/std/collections/index.yo +11 -0
- package/std/collections/linked_list.yo +439 -0
- package/std/error.yo +0 -0
- package/std/gc.yo +10 -0
- package/std/index.yo +12 -0
- package/std/io/file.yo +191 -0
- package/std/io/index.yo +5 -0
- package/std/libc/assert.yo +39 -0
- package/std/libc/ctype.yo +57 -0
- package/std/libc/errno.yo +182 -0
- package/std/libc/float.yo +87 -0
- package/std/libc/index.yo +29 -0
- package/std/libc/limits.yo +65 -0
- package/std/libc/math.yo +679 -0
- package/std/libc/signal.yo +101 -0
- package/std/libc/stdatomic.yo +213 -0
- package/std/libc/stdint.yo +214 -0
- package/std/libc/stdio.yo +225 -0
- package/std/libc/stdlib.yo +204 -0
- package/std/libc/string.yo +151 -0
- package/std/libc/time.yo +92 -0
- package/std/libc/unistd.yo +130 -0
- package/std/monad.yo +152 -0
- package/std/prelude.yo +3094 -0
- package/std/string/index.yo +8 -0
- package/std/string/rune.yo +82 -0
- package/std/string/string.yo +288 -0
- package/std/sync.yo +95 -0
- package/std/thread.yo +36 -0
- package/std/time.yo +13 -0
- package/std/worker.yo +36 -0
- package/vendor/mimalloc/.gitattributes +12 -0
- package/vendor/mimalloc/CMakeLists.txt +763 -0
- package/vendor/mimalloc/LICENSE +21 -0
- package/vendor/mimalloc/SECURITY.md +41 -0
- package/vendor/mimalloc/azure-pipelines.yml +251 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect.lib +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect32.dll +0 -0
- package/vendor/mimalloc/bin/mimalloc-redirect32.lib +0 -0
- package/vendor/mimalloc/bin/minject-arm64.exe +0 -0
- package/vendor/mimalloc/bin/minject.exe +0 -0
- package/vendor/mimalloc/bin/minject32.exe +0 -0
- package/vendor/mimalloc/bin/readme.md +118 -0
- package/vendor/mimalloc/cmake/JoinPaths.cmake +23 -0
- package/vendor/mimalloc/cmake/mimalloc-config-version.cmake +19 -0
- package/vendor/mimalloc/cmake/mimalloc-config.cmake +14 -0
- package/vendor/mimalloc/contrib/docker/alpine/Dockerfile +23 -0
- package/vendor/mimalloc/contrib/docker/alpine-arm32v7/Dockerfile +28 -0
- package/vendor/mimalloc/contrib/docker/alpine-x86/Dockerfile +28 -0
- package/vendor/mimalloc/contrib/docker/manylinux-x64/Dockerfile +23 -0
- package/vendor/mimalloc/contrib/docker/readme.md +10 -0
- package/vendor/mimalloc/contrib/vcpkg/portfile.cmake +64 -0
- package/vendor/mimalloc/contrib/vcpkg/readme.md +40 -0
- package/vendor/mimalloc/contrib/vcpkg/usage +20 -0
- package/vendor/mimalloc/contrib/vcpkg/vcpkg-cmake-wrapper.cmake +20 -0
- package/vendor/mimalloc/contrib/vcpkg/vcpkg.json +48 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-a.svg +887 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-b.svg +1185 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-a.svg +757 -0
- package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-b.svg +1028 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-1.svg +769 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-a.svg +868 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-b.svg +1157 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-2.svg +983 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-1.svg +683 -0
- package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-2.svg +854 -0
- package/vendor/mimalloc/doc/bench-2020/bench-spec-rss.svg +713 -0
- package/vendor/mimalloc/doc/bench-2020/bench-spec.svg +713 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-1.svg +890 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-2.svg +1146 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-1.svg +796 -0
- package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-2.svg +974 -0
- package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-a.svg +952 -0
- package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-b.svg +1255 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-a.svg +955 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-b.svg +1269 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-a.svg +836 -0
- package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-b.svg +1131 -0
- package/vendor/mimalloc/doc/bench-2021/bench-macmini-2021-01-30.svg +766 -0
- package/vendor/mimalloc/doc/doxyfile +2895 -0
- package/vendor/mimalloc/doc/ds-logo.jpg +0 -0
- package/vendor/mimalloc/doc/ds-logo.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-doc.h +1452 -0
- package/vendor/mimalloc/doc/mimalloc-doxygen.css +60 -0
- package/vendor/mimalloc/doc/mimalloc-logo-100.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-logo.png +0 -0
- package/vendor/mimalloc/doc/mimalloc-logo.svg +161 -0
- package/vendor/mimalloc/doc/spades-logo.png +0 -0
- package/vendor/mimalloc/doc/unreal-logo.svg +43 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj +500 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj.filters +108 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj +508 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj.filters +111 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-test-dep.vcxproj +355 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-override-test.vcxproj +360 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test-api.vcxproj +295 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test-stress.vcxproj +292 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc-test.vcxproj +289 -0
- package/vendor/mimalloc/ide/vs2022/mimalloc.sln +151 -0
- package/vendor/mimalloc/include/mimalloc/atomic.h +557 -0
- package/vendor/mimalloc/include/mimalloc/internal.h +1153 -0
- package/vendor/mimalloc/include/mimalloc/prim.h +421 -0
- package/vendor/mimalloc/include/mimalloc/track.h +145 -0
- package/vendor/mimalloc/include/mimalloc/types.h +685 -0
- package/vendor/mimalloc/include/mimalloc-new-delete.h +66 -0
- package/vendor/mimalloc/include/mimalloc-override.h +68 -0
- package/vendor/mimalloc/include/mimalloc-stats.h +103 -0
- package/vendor/mimalloc/include/mimalloc.h +612 -0
- package/vendor/mimalloc/mimalloc.pc.in +11 -0
- package/vendor/mimalloc/readme.md +946 -0
- package/vendor/mimalloc/src/alloc-aligned.c +360 -0
- package/vendor/mimalloc/src/alloc-override.c +316 -0
- package/vendor/mimalloc/src/alloc-posix.c +185 -0
- package/vendor/mimalloc/src/alloc.c +692 -0
- package/vendor/mimalloc/src/arena-abandon.c +346 -0
- package/vendor/mimalloc/src/arena.c +1043 -0
- package/vendor/mimalloc/src/bitmap.c +441 -0
- package/vendor/mimalloc/src/bitmap.h +119 -0
- package/vendor/mimalloc/src/free.c +572 -0
- package/vendor/mimalloc/src/heap.c +733 -0
- package/vendor/mimalloc/src/init.c +714 -0
- package/vendor/mimalloc/src/libc.c +334 -0
- package/vendor/mimalloc/src/options.c +663 -0
- package/vendor/mimalloc/src/os.c +770 -0
- package/vendor/mimalloc/src/page-queue.c +390 -0
- package/vendor/mimalloc/src/page.c +1049 -0
- package/vendor/mimalloc/src/prim/emscripten/prim.c +249 -0
- package/vendor/mimalloc/src/prim/osx/alloc-override-zone.c +461 -0
- package/vendor/mimalloc/src/prim/osx/prim.c +9 -0
- package/vendor/mimalloc/src/prim/prim.c +76 -0
- package/vendor/mimalloc/src/prim/readme.md +9 -0
- package/vendor/mimalloc/src/prim/unix/prim.c +934 -0
- package/vendor/mimalloc/src/prim/wasi/prim.c +284 -0
- package/vendor/mimalloc/src/prim/windows/etw-mimalloc.wprp +61 -0
- package/vendor/mimalloc/src/prim/windows/etw.h +905 -0
- package/vendor/mimalloc/src/prim/windows/etw.man +0 -0
- package/vendor/mimalloc/src/prim/windows/prim.c +878 -0
- package/vendor/mimalloc/src/prim/windows/readme.md +17 -0
- package/vendor/mimalloc/src/random.c +258 -0
- package/vendor/mimalloc/src/segment-map.c +142 -0
- package/vendor/mimalloc/src/segment.c +1702 -0
- package/vendor/mimalloc/src/static.c +41 -0
- package/vendor/mimalloc/src/stats.c +635 -0
- package/vendor/mimalloc/test/CMakeLists.txt +56 -0
- package/vendor/mimalloc/test/main-override-dep.cpp +51 -0
- package/vendor/mimalloc/test/main-override-dep.h +11 -0
- package/vendor/mimalloc/test/main-override-static.c +539 -0
- package/vendor/mimalloc/test/main-override.c +36 -0
- package/vendor/mimalloc/test/main-override.cpp +497 -0
- package/vendor/mimalloc/test/main.c +46 -0
- package/vendor/mimalloc/test/readme.md +16 -0
- package/vendor/mimalloc/test/test-api-fill.c +343 -0
- package/vendor/mimalloc/test/test-api.c +466 -0
- package/vendor/mimalloc/test/test-stress.c +428 -0
- package/vendor/mimalloc/test/test-wrong.c +92 -0
- package/vendor/mimalloc/test/testhelper.h +49 -0
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
+
<ProjectConfiguration Include="Debug|ARM64">
|
|
5
|
+
<Configuration>Debug</Configuration>
|
|
6
|
+
<Platform>ARM64</Platform>
|
|
7
|
+
</ProjectConfiguration>
|
|
8
|
+
<ProjectConfiguration Include="Debug|ARM64EC">
|
|
9
|
+
<Configuration>Debug</Configuration>
|
|
10
|
+
<Platform>ARM64EC</Platform>
|
|
11
|
+
</ProjectConfiguration>
|
|
12
|
+
<ProjectConfiguration Include="Debug|Win32">
|
|
13
|
+
<Configuration>Debug</Configuration>
|
|
14
|
+
<Platform>Win32</Platform>
|
|
15
|
+
</ProjectConfiguration>
|
|
16
|
+
<ProjectConfiguration Include="Release|ARM64">
|
|
17
|
+
<Configuration>Release</Configuration>
|
|
18
|
+
<Platform>ARM64</Platform>
|
|
19
|
+
</ProjectConfiguration>
|
|
20
|
+
<ProjectConfiguration Include="Release|ARM64EC">
|
|
21
|
+
<Configuration>Release</Configuration>
|
|
22
|
+
<Platform>ARM64EC</Platform>
|
|
23
|
+
</ProjectConfiguration>
|
|
24
|
+
<ProjectConfiguration Include="Release|Win32">
|
|
25
|
+
<Configuration>Release</Configuration>
|
|
26
|
+
<Platform>Win32</Platform>
|
|
27
|
+
</ProjectConfiguration>
|
|
28
|
+
<ProjectConfiguration Include="Debug|x64">
|
|
29
|
+
<Configuration>Debug</Configuration>
|
|
30
|
+
<Platform>x64</Platform>
|
|
31
|
+
</ProjectConfiguration>
|
|
32
|
+
<ProjectConfiguration Include="Release|x64">
|
|
33
|
+
<Configuration>Release</Configuration>
|
|
34
|
+
<Platform>x64</Platform>
|
|
35
|
+
</ProjectConfiguration>
|
|
36
|
+
</ItemGroup>
|
|
37
|
+
<PropertyGroup Label="Globals">
|
|
38
|
+
<VCProjectVersion>15.0</VCProjectVersion>
|
|
39
|
+
<ProjectGuid>{FEF7869F-750E-4C21-A04D-22707CC66879}</ProjectGuid>
|
|
40
|
+
<RootNamespace>mimalloc-test-override-dep</RootNamespace>
|
|
41
|
+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
|
42
|
+
<ProjectName>mimalloc-test-override-dep</ProjectName>
|
|
43
|
+
</PropertyGroup>
|
|
44
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
45
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
46
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
47
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
48
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
49
|
+
</PropertyGroup>
|
|
50
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
51
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
52
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
53
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
54
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
55
|
+
</PropertyGroup>
|
|
56
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
57
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
58
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
59
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
60
|
+
</PropertyGroup>
|
|
61
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
|
|
62
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
63
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
64
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
65
|
+
</PropertyGroup>
|
|
66
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'" Label="Configuration">
|
|
67
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
68
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
69
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
70
|
+
</PropertyGroup>
|
|
71
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
72
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
73
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
74
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
75
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
76
|
+
</PropertyGroup>
|
|
77
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
|
|
78
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
79
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
80
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
81
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
82
|
+
</PropertyGroup>
|
|
83
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'" Label="Configuration">
|
|
84
|
+
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
85
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
86
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
87
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
88
|
+
</PropertyGroup>
|
|
89
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
90
|
+
<ImportGroup Label="ExtensionSettings">
|
|
91
|
+
</ImportGroup>
|
|
92
|
+
<ImportGroup Label="Shared">
|
|
93
|
+
</ImportGroup>
|
|
94
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
95
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
96
|
+
</ImportGroup>
|
|
97
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
98
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
99
|
+
</ImportGroup>
|
|
100
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
101
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
102
|
+
</ImportGroup>
|
|
103
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="PropertySheets">
|
|
104
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
105
|
+
</ImportGroup>
|
|
106
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'" Label="PropertySheets">
|
|
107
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
108
|
+
</ImportGroup>
|
|
109
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
110
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
111
|
+
</ImportGroup>
|
|
112
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="PropertySheets">
|
|
113
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
114
|
+
</ImportGroup>
|
|
115
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'" Label="PropertySheets">
|
|
116
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
117
|
+
</ImportGroup>
|
|
118
|
+
<PropertyGroup Label="UserMacros" />
|
|
119
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
120
|
+
<OutDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(Configuration)\</OutDir>
|
|
121
|
+
<IntDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
|
122
|
+
</PropertyGroup>
|
|
123
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
124
|
+
<OutDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(Configuration)\</OutDir>
|
|
125
|
+
<IntDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
|
126
|
+
</PropertyGroup>
|
|
127
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
128
|
+
<OutDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(Configuration)\</OutDir>
|
|
129
|
+
<IntDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
|
130
|
+
</PropertyGroup>
|
|
131
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
|
132
|
+
<OutDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(Configuration)\</OutDir>
|
|
133
|
+
<IntDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
|
134
|
+
</PropertyGroup>
|
|
135
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'">
|
|
136
|
+
<OutDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(Configuration)\</OutDir>
|
|
137
|
+
<IntDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
|
138
|
+
</PropertyGroup>
|
|
139
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
140
|
+
<OutDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(Configuration)\</OutDir>
|
|
141
|
+
<IntDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
|
142
|
+
</PropertyGroup>
|
|
143
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
|
144
|
+
<OutDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(Configuration)\</OutDir>
|
|
145
|
+
<IntDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
|
146
|
+
</PropertyGroup>
|
|
147
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'">
|
|
148
|
+
<OutDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(Configuration)\</OutDir>
|
|
149
|
+
<IntDir>$(ProjectDir)..\..\out\msvc-$(Platform)\$(ProjectName)\$(Configuration)\</IntDir>
|
|
150
|
+
</PropertyGroup>
|
|
151
|
+
<PropertyGroup Label="Vcpkg">
|
|
152
|
+
<VcpkgEnabled>false</VcpkgEnabled>
|
|
153
|
+
</PropertyGroup>
|
|
154
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
155
|
+
<ClCompile>
|
|
156
|
+
<WarningLevel>Level3</WarningLevel>
|
|
157
|
+
<Optimization>Disabled</Optimization>
|
|
158
|
+
<SDLCheck>true</SDLCheck>
|
|
159
|
+
<ConformanceMode>true</ConformanceMode>
|
|
160
|
+
<AdditionalIncludeDirectories>..\..\include</AdditionalIncludeDirectories>
|
|
161
|
+
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
162
|
+
<ExceptionHandling>Sync</ExceptionHandling>
|
|
163
|
+
<CompileAs>Default</CompileAs>
|
|
164
|
+
<SupportJustMyCode>false</SupportJustMyCode>
|
|
165
|
+
</ClCompile>
|
|
166
|
+
<Link>
|
|
167
|
+
<SubSystem>Console</SubSystem>
|
|
168
|
+
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
169
|
+
</Link>
|
|
170
|
+
<PostBuildEvent />
|
|
171
|
+
<PostBuildEvent>
|
|
172
|
+
<Command>
|
|
173
|
+
</Command>
|
|
174
|
+
</PostBuildEvent>
|
|
175
|
+
</ItemDefinitionGroup>
|
|
176
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
177
|
+
<ClCompile>
|
|
178
|
+
<WarningLevel>Level3</WarningLevel>
|
|
179
|
+
<Optimization>Disabled</Optimization>
|
|
180
|
+
<SDLCheck>true</SDLCheck>
|
|
181
|
+
<ConformanceMode>true</ConformanceMode>
|
|
182
|
+
<AdditionalIncludeDirectories>..\..\include</AdditionalIncludeDirectories>
|
|
183
|
+
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
184
|
+
<ExceptionHandling>Sync</ExceptionHandling>
|
|
185
|
+
<CompileAs>Default</CompileAs>
|
|
186
|
+
<SupportJustMyCode>false</SupportJustMyCode>
|
|
187
|
+
</ClCompile>
|
|
188
|
+
<Link>
|
|
189
|
+
<SubSystem>Console</SubSystem>
|
|
190
|
+
<EntryPointSymbol>
|
|
191
|
+
</EntryPointSymbol>
|
|
192
|
+
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
193
|
+
</Link>
|
|
194
|
+
<PostBuildEvent />
|
|
195
|
+
<PostBuildEvent>
|
|
196
|
+
<Command>
|
|
197
|
+
</Command>
|
|
198
|
+
</PostBuildEvent>
|
|
199
|
+
</ItemDefinitionGroup>
|
|
200
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
|
201
|
+
<ClCompile>
|
|
202
|
+
<WarningLevel>Level3</WarningLevel>
|
|
203
|
+
<Optimization>Disabled</Optimization>
|
|
204
|
+
<SDLCheck>true</SDLCheck>
|
|
205
|
+
<ConformanceMode>true</ConformanceMode>
|
|
206
|
+
<AdditionalIncludeDirectories>..\..\include</AdditionalIncludeDirectories>
|
|
207
|
+
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
208
|
+
<ExceptionHandling>Sync</ExceptionHandling>
|
|
209
|
+
<CompileAs>Default</CompileAs>
|
|
210
|
+
<SupportJustMyCode>false</SupportJustMyCode>
|
|
211
|
+
</ClCompile>
|
|
212
|
+
<Link>
|
|
213
|
+
<SubSystem>Console</SubSystem>
|
|
214
|
+
<EntryPointSymbol>
|
|
215
|
+
</EntryPointSymbol>
|
|
216
|
+
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
217
|
+
</Link>
|
|
218
|
+
<PostBuildEvent />
|
|
219
|
+
<PostBuildEvent>
|
|
220
|
+
<Command>
|
|
221
|
+
</Command>
|
|
222
|
+
</PostBuildEvent>
|
|
223
|
+
</ItemDefinitionGroup>
|
|
224
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64EC'">
|
|
225
|
+
<ClCompile>
|
|
226
|
+
<WarningLevel>Level3</WarningLevel>
|
|
227
|
+
<Optimization>Disabled</Optimization>
|
|
228
|
+
<SDLCheck>true</SDLCheck>
|
|
229
|
+
<ConformanceMode>true</ConformanceMode>
|
|
230
|
+
<AdditionalIncludeDirectories>..\..\include</AdditionalIncludeDirectories>
|
|
231
|
+
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
232
|
+
<ExceptionHandling>Sync</ExceptionHandling>
|
|
233
|
+
<CompileAs>Default</CompileAs>
|
|
234
|
+
<SupportJustMyCode>false</SupportJustMyCode>
|
|
235
|
+
</ClCompile>
|
|
236
|
+
<Link>
|
|
237
|
+
<SubSystem>Console</SubSystem>
|
|
238
|
+
<EntryPointSymbol>
|
|
239
|
+
</EntryPointSymbol>
|
|
240
|
+
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
241
|
+
</Link>
|
|
242
|
+
<PostBuildEvent />
|
|
243
|
+
<PostBuildEvent>
|
|
244
|
+
<Command>
|
|
245
|
+
</Command>
|
|
246
|
+
</PostBuildEvent>
|
|
247
|
+
</ItemDefinitionGroup>
|
|
248
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
249
|
+
<ClCompile>
|
|
250
|
+
<WarningLevel>Level3</WarningLevel>
|
|
251
|
+
<Optimization>MaxSpeed</Optimization>
|
|
252
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
253
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
254
|
+
<SDLCheck>true</SDLCheck>
|
|
255
|
+
<ConformanceMode>true</ConformanceMode>
|
|
256
|
+
<AdditionalIncludeDirectories>..\..\include</AdditionalIncludeDirectories>
|
|
257
|
+
<PreprocessorDefinitions>_MBCS;%(PreprocessorDefinitions);NDEBUG</PreprocessorDefinitions>
|
|
258
|
+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
259
|
+
</ClCompile>
|
|
260
|
+
<Link>
|
|
261
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
262
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
263
|
+
<SubSystem>Console</SubSystem>
|
|
264
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
265
|
+
</Link>
|
|
266
|
+
<PostBuildEvent>
|
|
267
|
+
<Command>
|
|
268
|
+
</Command>
|
|
269
|
+
</PostBuildEvent>
|
|
270
|
+
</ItemDefinitionGroup>
|
|
271
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
272
|
+
<ClCompile>
|
|
273
|
+
<WarningLevel>Level3</WarningLevel>
|
|
274
|
+
<Optimization>MaxSpeed</Optimization>
|
|
275
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
276
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
277
|
+
<SDLCheck>true</SDLCheck>
|
|
278
|
+
<ConformanceMode>true</ConformanceMode>
|
|
279
|
+
<AdditionalIncludeDirectories>..\..\include</AdditionalIncludeDirectories>
|
|
280
|
+
<PreprocessorDefinitions>_MBCS;%(PreprocessorDefinitions);NDEBUG</PreprocessorDefinitions>
|
|
281
|
+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
282
|
+
</ClCompile>
|
|
283
|
+
<Link>
|
|
284
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
285
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
286
|
+
<SubSystem>Console</SubSystem>
|
|
287
|
+
<EntryPointSymbol>
|
|
288
|
+
</EntryPointSymbol>
|
|
289
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
290
|
+
</Link>
|
|
291
|
+
<PostBuildEvent>
|
|
292
|
+
<Command>
|
|
293
|
+
</Command>
|
|
294
|
+
</PostBuildEvent>
|
|
295
|
+
</ItemDefinitionGroup>
|
|
296
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
|
297
|
+
<ClCompile>
|
|
298
|
+
<WarningLevel>Level3</WarningLevel>
|
|
299
|
+
<Optimization>MaxSpeed</Optimization>
|
|
300
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
301
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
302
|
+
<SDLCheck>true</SDLCheck>
|
|
303
|
+
<ConformanceMode>true</ConformanceMode>
|
|
304
|
+
<AdditionalIncludeDirectories>..\..\include</AdditionalIncludeDirectories>
|
|
305
|
+
<PreprocessorDefinitions>_MBCS;%(PreprocessorDefinitions);NDEBUG</PreprocessorDefinitions>
|
|
306
|
+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
307
|
+
</ClCompile>
|
|
308
|
+
<Link>
|
|
309
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
310
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
311
|
+
<SubSystem>Console</SubSystem>
|
|
312
|
+
<EntryPointSymbol>
|
|
313
|
+
</EntryPointSymbol>
|
|
314
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
315
|
+
</Link>
|
|
316
|
+
<PostBuildEvent>
|
|
317
|
+
<Command>
|
|
318
|
+
</Command>
|
|
319
|
+
</PostBuildEvent>
|
|
320
|
+
</ItemDefinitionGroup>
|
|
321
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64EC'">
|
|
322
|
+
<ClCompile>
|
|
323
|
+
<WarningLevel>Level3</WarningLevel>
|
|
324
|
+
<Optimization>MaxSpeed</Optimization>
|
|
325
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
326
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
327
|
+
<SDLCheck>true</SDLCheck>
|
|
328
|
+
<ConformanceMode>true</ConformanceMode>
|
|
329
|
+
<AdditionalIncludeDirectories>..\..\include</AdditionalIncludeDirectories>
|
|
330
|
+
<PreprocessorDefinitions>_MBCS;%(PreprocessorDefinitions);NDEBUG</PreprocessorDefinitions>
|
|
331
|
+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
332
|
+
</ClCompile>
|
|
333
|
+
<Link>
|
|
334
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
335
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
336
|
+
<SubSystem>Console</SubSystem>
|
|
337
|
+
<EntryPointSymbol>
|
|
338
|
+
</EntryPointSymbol>
|
|
339
|
+
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
340
|
+
</Link>
|
|
341
|
+
<PostBuildEvent>
|
|
342
|
+
<Command>
|
|
343
|
+
</Command>
|
|
344
|
+
</PostBuildEvent>
|
|
345
|
+
</ItemDefinitionGroup>
|
|
346
|
+
<ItemGroup>
|
|
347
|
+
<ClCompile Include="..\..\test\main-override-dep.cpp" />
|
|
348
|
+
</ItemGroup>
|
|
349
|
+
<ItemGroup>
|
|
350
|
+
<ClInclude Include="..\..\test\main-override-dep.h" />
|
|
351
|
+
</ItemGroup>
|
|
352
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
353
|
+
<ImportGroup Label="ExtensionTargets">
|
|
354
|
+
</ImportGroup>
|
|
355
|
+
</Project>
|