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-02-22 00:21:31 +0300
committerRay Molenkamp <github@lazydodo.com>2019-02-22 00:21:31 +0300
commit4d4ae491c8098001700c23b805f7514fd56941f3 (patch)
tree11bf965af12047460dab6336ac1392614d7250e3 /source/blender/makesrna/intern/CMakeLists.txt
parent8ed6985017a6eae95530927eb386a0c42ae4d1e9 (diff)
makesrna: Remove usage of dynamically linked pthreads4w
With pthreads now being static, there is no more reason to copy the dll.
Diffstat (limited to 'source/blender/makesrna/intern/CMakeLists.txt')
-rw-r--r--source/blender/makesrna/intern/CMakeLists.txt8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/makesrna/intern/CMakeLists.txt b/source/blender/makesrna/intern/CMakeLists.txt
index 5dc372bf8c1..255220245e0 100644
--- a/source/blender/makesrna/intern/CMakeLists.txt
+++ b/source/blender/makesrna/intern/CMakeLists.txt
@@ -375,11 +375,3 @@ set(SRC
add_definitions(${GL_DEFINITIONS})
blender_add_lib(bf_rna "${SRC}" "${INC}" "${INC_SYS}")
-
-#makesrna needs the prhreads dll to properly run on windows
-if(WIN32)
- ADD_CUSTOM_COMMAND(TARGET bf_rna
- PRE_BUILD
- COMMAND ${CMAKE_COMMAND} -E copy ${LIBDIR}/pthreads/lib/pthreadVC3.dll $<TARGET_FILE_DIR:makesrna>/
- )
-endif()