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:
authorBrecht Van Lommel <brecht@blender.org>2022-01-13 13:12:56 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-01-13 13:12:56 +0300
commit19a62203089ffa3e8866a1989aefef7774744aca (patch)
treee2ca9fc7efa225653f63dae22c3d64600e7d5281 /source/creator/CMakeLists.txt
parentd53738396f45e76c1e486f0f5829196ec5903072 (diff)
Fix link errors after recent FFMPEG / link_directories changes
Diffstat (limited to 'source/creator/CMakeLists.txt')
-rw-r--r--source/creator/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 7e657abd937..a5d20e1fa37 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -71,6 +71,10 @@ endif()
if(WITH_TBB)
blender_include_dirs(${TBB_INCLUDE_DIRS})
+ if(WIN32)
+ # For pragma that links tbbmalloc_proxy.lib
+ link_directories(${LIBDIR}/tbb/lib)
+ endif()
endif()