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-11-08 06:43:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-11-08 09:00:36 +0300
commitfb4b73751878d40b431e4aca11f20486b7219ef9 (patch)
tree3999f09b6b7d1ae32a8c7b3d14adbed0da17a8d8 /source/blender/blendthumb
parent27b37517f8ba113237a7ab58f20eb0c2de40323b (diff)
CMake: add missing headers to CMake lists
Diffstat (limited to 'source/blender/blendthumb')
-rw-r--r--source/blender/blendthumb/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/blendthumb/CMakeLists.txt b/source/blender/blendthumb/CMakeLists.txt
index 4c2e72418a0..e2d278255ba 100644
--- a/source/blender/blendthumb/CMakeLists.txt
+++ b/source/blender/blendthumb/CMakeLists.txt
@@ -60,7 +60,11 @@ else()
# -----------------------------------------------------------------------------
# Build `blender-thumbnailer` executable
- add_executable(blender-thumbnailer ${SRC} src/blender_thumbnailer.cc)
+ set(SRC_CMD
+ src/blender_thumbnailer.cc
+ )
+
+ add_executable(blender-thumbnailer ${SRC} ${SRC_CMD})
target_link_libraries(blender-thumbnailer bf_blenlib)
target_link_libraries(blender-thumbnailer ${PTHREADS_LIBRARIES})
endif()