From 82a42915968f514faf77edb76c7a2ed656a0fa44 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Tue, 27 Aug 2024 08:02:20 -0600 Subject: [PATCH] Fix #126798: launcher manifest not linked leading to startup issues The manifest was not linked, leading blender-launcher not to look in the blender.crt folder for the vcruntime140.dll. Causing issues for systems where this binary was not available elsewhere (like pristine windows installs) --- source/creator/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index 95a1aa2f73d..784f38144d9 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -348,7 +348,7 @@ else() ${CMAKE_SOURCE_DIR}/release/windows/icons/winblender.rc ) if(NOT WITH_WINDOWS_EXTERNAL_MANIFEST) - list(APPEND SRC + target_sources(blender-launcher PRIVATE ${CMAKE_BINARY_DIR}/blender.exe.manifest ) endif()