aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a67405a..03c87a4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -283,6 +283,12 @@ endif()
283if(WIN32) 283if(WIN32)
284 set(OPENSSL_LIBS ${OPENSSL_LIBS} ws2_32) 284 set(OPENSSL_LIBS ${OPENSSL_LIBS} ws2_32)
285endif() 285endif()
286
287check_function_exists(clock_gettime HAVE_CLOCK_GETTIME)
288if(HAVE_CLOCK_GETTIME)
289 add_definitions(-DHAVE_CLOCK_GETTIME)
290endif()
291
286if(CMAKE_SYSTEM_NAME MATCHES "Linux") 292if(CMAKE_SYSTEM_NAME MATCHES "Linux")
287 check_library_exists(rt clock_gettime "time.h" HAVE_CLOCK_GETTIME) 293 check_library_exists(rt clock_gettime "time.h" HAVE_CLOCK_GETTIME)
288 if (HAVE_CLOCK_GETTIME) 294 if (HAVE_CLOCK_GETTIME)