Browse Source

obs-ffmpeg: avoid w32-pthreads for mingw-w64

mingw-w64 provides its own pthreads library
martell 10 years ago
parent
commit
b8055ed944
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/obs-ffmpeg/CMakeLists.txt

+ 1 - 1
plugins/obs-ffmpeg/CMakeLists.txt

@@ -1,6 +1,6 @@
 project(obs-ffmpeg)
 
-if(WIN32)
+if(MSVC)
 	set(obs-ffmpeg_PLATFORM_DEPS
 		w32-pthreads)
 endif()