From fc5a9433278ef3911fb794a3e00d21a46756ede0 Mon Sep 17 00:00:00 2001 From: Snaipe Date: Tue, 12 Jan 2016 19:37:00 +0100 Subject: [PATCH] Added missing pthreads link dependency --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4caea5f..75dc168 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -261,6 +261,8 @@ endif () if (MSVC) target_link_libraries(criterion wingetopt) +else () + target_link_libraries(criterion pthread) endif () if (HAVE_CLOCK_GETTIME)