1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-27 16:39:09 +00:00

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

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.