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:
authorRay Molenkamp <github@lazydodo.com>2019-08-30 20:40:46 +0300
committerRay Molenkamp <github@lazydodo.com>2019-08-30 20:40:46 +0300
commitf430685d2d286f2f43b68ea2debec4f124de9072 (patch)
treeccdd93587c9a6cd60cf5d301e56576392c42e090
parentd8bc28ca20c75cfced1d6c64857b1c2ff0282cc6 (diff)
Windows: Fix compatibility with older cmake
Older cmake did not find the BlendThumb sub project.
-rw-r--r--source/blender/blendthumb/CMakeLists.txt6
-rw-r--r--source/creator/CMakeLists.txt10
2 files changed, 6 insertions, 10 deletions
diff --git a/source/blender/blendthumb/CMakeLists.txt b/source/blender/blendthumb/CMakeLists.txt
index 3f9e0b1bff5..669234550af 100644
--- a/source/blender/blendthumb/CMakeLists.txt
+++ b/source/blender/blendthumb/CMakeLists.txt
@@ -30,3 +30,9 @@ set(SRC
add_library(BlendThumb SHARED ${SRC})
target_link_libraries(BlendThumb ${ZLIB_LIBRARIES})
+
+install(
+ FILES $<TARGET_FILE:BlendThumb>
+ COMPONENT Blender
+ DESTINATION "."
+)
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 893d3262590..1cd0a6661f8 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -1026,16 +1026,6 @@ if (WIN32)
endif()
# -----------------------------------------------------------------------------
-# Thumbnailer
-if(WIN32)
- install(
- TARGETS BlendThumb
- COMPONENT Blender
- DESTINATION "."
- )
-endif()
-
-# -----------------------------------------------------------------------------
# Setup launcher
if(WIN32 AND NOT WITH_PYTHON_MODULE)