From e869a914b01cf43525c7e7839ecb8eb9b10117e9 Mon Sep 17 00:00:00 2001 From: martell Date: Wed, 4 Feb 2015 05:07:11 +0000 Subject: [PATCH] cmake: exclude w32-pthreads for mingw-w64 mingw-w64 has its own pthreads library --- deps/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt index 66c359f02..be6671002 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt @@ -1,5 +1,8 @@ +if(NOT MINGW) add_subdirectory(w32-pthreads) +endif() + add_subdirectory(glad) add_subdirectory(ipc-util)