Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/creator/CMakeLists.txt')
-rw-r--r--source/creator/CMakeLists.txt22
1 files changed, 10 insertions, 12 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index f74fd57252d..893d3262590 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -820,18 +820,6 @@ elseif(WIN32)
)
endif()
- if(NOT CMAKE_CL_64)
- install(
- FILES ${LIBDIR}/thumbhandler/lib/BlendThumb.dll
- DESTINATION "."
- )
- endif()
-
- install( # x86 builds can run on x64 Windows, so this is required at all times
- FILES ${LIBDIR}/thumbhandler/lib/BlendThumb64.dll
- DESTINATION "."
- )
-
install(
FILES
${CMAKE_SOURCE_DIR}/release/windows/batch/blender_debug_gpu.cmd
@@ -1038,6 +1026,16 @@ if (WIN32)
endif()
# -----------------------------------------------------------------------------
+# Thumbnailer
+if(WIN32)
+ install(
+ TARGETS BlendThumb
+ COMPONENT Blender
+ DESTINATION "."
+ )
+endif()
+
+# -----------------------------------------------------------------------------
# Setup launcher
if(WIN32 AND NOT WITH_PYTHON_MODULE)