Fix: [CMake] libpng header/library mismatch for macos

This commit is contained in:
glx22 2021-02-27 01:34:00 +01:00 committed by Loïc Guilloux
parent fe451b8dc7
commit 54fb4c04e3
1 changed files with 5 additions and 0 deletions

View File

@ -104,6 +104,11 @@ if(OPTION_TOOLS_ONLY)
return()
endif()
if(APPLE)
# Avoid searching for headers in Frameworks, and libraries in LIBDIR.
set(CMAKE_FIND_FRAMEWORK LAST)
endif()
# Prefer -pthread over -lpthread, which is often the better option of the two.
set(CMAKE_THREAD_PREFER_PTHREAD YES)
# Make sure we have Threads available.