mirror of
https://github.com/glfw/glfw.git
synced 2025-04-06 05:55:09 +00:00
POSIX threads should not be preferred on Win32.
This commit is contained in:
parent
4408d2134c
commit
d5e4204ed1
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue