Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix OpenMP library usage that has a dependency to pthread that break …
…conda package usage Because there is an explicit link to libpthread location that breaks visp conda package usage on linux we cannot use OpenMP_CXX_LIBRARIES that contains /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so;/usr/lib/x86_64-linux-gnu/libpthread.a by adding: list(APPEND opt_libs ${OpenMP_CXX_LIBRARIES}) That's why we need to use the modern way to consider pthread dependency
- Loading branch information