]> git.mxchange.org Git - simgear.git/commitdiff
test linkage needs librt on Linux. Need to tidy this up on the FG side.
authorJames Turner <zakalawe@mac.com>
Tue, 19 Jul 2011 12:53:13 +0000 (13:53 +0100)
committerJames Turner <zakalawe@mac.com>
Tue, 19 Jul 2011 12:53:13 +0000 (13:53 +0100)
CMakeLists.txt
simgear/io/CMakeLists.txt

index 73bfdb5192eca4c53880521f4368e769a0f6e179..517d87df1453c0e7f92a59d4bd096f4634f28cd8 100644 (file)
@@ -92,6 +92,31 @@ check_function_exists(ftime HAVE_FTIME)
 check_function_exists(timegm HAVE_TIMEGM)
 check_function_exists(rint HAVE_RINT)
 
+
+if(HAVE_UNISTD_H)
+    set(CMAKE_REQUIRED_INCLUDES ${CMAKE_INCLUDE_PATH})
+    check_cxx_source_compiles(
+       "#include <unistd.h>
+        #if !defined(_POSIX_TIMERS) || (0 >= _POSIX_TIMERS)
+            #error clock_gettime is not supported
+        #endif
+
+        int main() { return 0; }
+        "
+        HAVE_CLOCK_GETTIME)    
+endif(HAVE_UNISTD_H)
+
+set(RT_LIBRARY "")
+if(HAVE_CLOCK_GETTIME)
+    check_function_exists(clock_gettime CLOCK_GETTIME_IN_LIBC)
+    if(NOT CLOCK_GETTIME_IN_LIBC)
+        check_library_exists(rt clock_gettime "" HAVE_RT)
+        if(HAVE_RT)
+            set(RT_LIBRARY rt)
+        endif(HAVE_RT)
+        endif(NOT CLOCK_GETTIME_IN_LIBC)
+endif(HAVE_CLOCK_GETTIME)
+
 SET(CMAKE_DEBUG_POSTFIX "d" CACHE STRING "add a postfix, usually d on windows")
 SET(CMAKE_RELEASE_POSTFIX "" CACHE STRING "add a postfix, usually empty on windows")
 SET(CMAKE_RELWITHDEBINFO_POSTFIX "rd" CACHE STRING "add a postfix, usually empty on windows")
index 1d4600f6f1f8d52f99614ab6a11bcce75f88afa9..fe0eb6f1336fb50395260eabbd6821fe2e78fbdb 100644 (file)
@@ -40,5 +40,7 @@ add_executable(test_sock socktest.cxx)
 target_link_libraries(test_sock sgio sgstructure sgdebug)
 
 add_executable(test_http test_HTTP.cxx)
-target_link_libraries(test_http sgio sgstructure sgtiming sgmisc sgdebug)
+target_link_libraries(test_http 
+    sgio sgstructure sgtiming sgmisc sgdebug
+    ${RT_LIBRARY})