Fixed MinGW builds receiving -lpthread wrongly

This commit is contained in:
Snaipe 2016-01-12 22:28:45 +01:00
parent 43f3e99b36
commit 2e75ad6268

View file

@ -261,7 +261,9 @@ endif ()
if (MSVC)
target_link_libraries(criterion wingetopt)
else ()
endif ()
if (NOT WIN32)
target_link_libraries(criterion pthread)
endif ()