From 6df2ede3414422372ac3b0b229b401e973b98509 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Fri, 6 Dec 2019 10:12:03 -0700 Subject: Cleanup/Windows: Separate out the MS-CRT into a subfolder In older versions the ms crt was only a few dlls, in recent versions this jumped to over 40 leading to quite a bit of clutter in our bin folder. This change moves the CRT into its own folder. For developers that generally already have the runtime globaly available on their machine, there is a new cmake option (WITH_WINDOWS_BUNDLE_CRT, default ON) that you can use to toggle installing the runtime to the blender bin folder, and save some time during the initial build, this option is off by default for only the developer profile. Reviewed By: brecht Differential Revision: https://developer.blender.org/D6132 --- source/creator/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index 01951fb9790..3628c6efda9 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -149,7 +149,7 @@ if(WIN32 AND NOT UNIX) list(APPEND SRC ${CMAKE_SOURCE_DIR}/release/windows/icons/winblender.rc - ${CMAKE_SOURCE_DIR}/release/windows/icons/blender.exe.manifest + ${CMAKE_BINARY_DIR}/blender.exe.manifest ) endif() -- cgit v1.2.3