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 /source/blender/blendthumb
parentd8bc28ca20c75cfced1d6c64857b1c2ff0282cc6 (diff)
Windows: Fix compatibility with older cmake
Older cmake did not find the BlendThumb sub project.
Diffstat (limited to 'source/blender/blendthumb')
-rw-r--r--source/blender/blendthumb/CMakeLists.txt6
1 files changed, 6 insertions, 0 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 "."
+)