From 1c9bf68b9f37a920118378da6aa01b745fafc5b0 Mon Sep 17 00:00:00 2001 From: Omar Emara Date: Wed, 4 Oct 2023 17:15:47 +0300 Subject: [PATCH] Fix link error in FastNoiseSIMD on Windows (#1924) The wrapper and library were using different runtimes. Compile the library against the dynamic runtime to match the runtime. --- animation_nodes/libs/FastNoiseSIMD/source/compile_windows.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animation_nodes/libs/FastNoiseSIMD/source/compile_windows.bat b/animation_nodes/libs/FastNoiseSIMD/source/compile_windows.bat index 5cdd83dca..ace309ea0 100644 --- a/animation_nodes/libs/FastNoiseSIMD/source/compile_windows.bat +++ b/animation_nodes/libs/FastNoiseSIMD/source/compile_windows.bat @@ -7,7 +7,7 @@ setlocal :: /EHsc Set appropriate error handling :: /GL- Disable whole program optimization :: /Ox Enable full optimization -set args=-c /EHsc /GL- /Ox +set args=-c /EHsc /GL- /Ox /MD cl FastNoiseSIMD.cpp %args% cl FastNoiseSIMD_internal.cpp %args%