Fix eigen/openmp link error in some build configurations

This commit is contained in:
Brecht Van Lommel
2020-02-09 16:29:07 +01:00
parent 8e981efe38
commit 19361bf2f4

View File

@@ -43,4 +43,10 @@ set(SRC
set(LIB
)
if(WITH_OPENMP_STATIC)
list(APPEND LIB
${OpenMP_LIBRARIES}
)
endif()
blender_add_lib(bf_intern_eigen "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")