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:
authorCampbell Barton <ideasman42@gmail.com>2021-10-20 04:10:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-20 04:15:33 +0300
commitfd7510984a6d472969436721031ae309ec4981a0 (patch)
treef8eebf3651bccfb8ad605c818496056e8ece1bd0 /source/creator
parentb280699078eee23bd8eb572668d6f0d8972d879a (diff)
CMake: add WITH_BLENDER_THUMBNAILER option
Make building the thumbnail extraction executable optional, disable on macOS as this was not linking, further, macOS doesn't use this for thumbnail extraction so it could be left disabled.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt20
1 files changed, 12 insertions, 8 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 45bfc3d6bdb..1d5d1491c7a 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -515,10 +515,12 @@ if(UNIX AND NOT APPLE)
DESTINATION "."
)
- install(
- TARGETS blender-thumbnailer
- DESTINATION "."
- )
+ if(WITH_BLENDER_THUMBNAILER)
+ install(
+ TARGETS blender-thumbnailer
+ DESTINATION "."
+ )
+ endif()
if(EXISTS ${LIBDIR}/mesa)
install(DIRECTORY ${LIBDIR}/mesa/lib DESTINATION ".")
@@ -558,10 +560,12 @@ if(UNIX AND NOT APPLE)
FILES ${CMAKE_SOURCE_DIR}/release/freedesktop/icons/symbolic/apps/blender-symbolic.svg
DESTINATION share/icons/hicolor/symbolic/apps
)
- install(
- TARGETS blender-thumbnailer
- DESTINATION bin
- )
+ if(WITH_BLENDER_THUMBNAILER)
+ install(
+ TARGETS blender-thumbnailer
+ DESTINATION bin
+ )
+ endif()
set(BLENDER_TEXT_FILES_DESTINATION share/doc/blender)
endif()