mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
POSIX threads should not be preferred on Win32.
This commit is contained in:
parent
4408d2134c
commit
d5e4204ed1
@ -17,7 +17,10 @@ option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
|
||||
|
||||
find_package(OpenGL REQUIRED)
|
||||
|
||||
set(CMAKE_THREAD_PREFER_PTHREADS YES)
|
||||
if (NOT WIN32)
|
||||
set(CMAKE_THREAD_PREFER_PTHREADS YES)
|
||||
endif()
|
||||
|
||||
find_package(Threads)
|
||||
if (CMAKE_THREAD_LIBS_INIT)
|
||||
list(APPEND glfw_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
|
||||
|
Loading…
Reference in New Issue
Block a user