pivotal-jbarrett commented on a change in pull request #928: URL: https://github.com/apache/geode-native/pull/928#discussion_r813263489
########## File path: cppcache/integration-test/CMakeLists.txt ########## @@ -69,6 +67,10 @@ add_clangformat(unit_test_callbacks) enable_testing() +if(UNIX AND NOT APPLE) Review comment: Perhaps something more like this? ``` find_library(LIB_RT rt) if (LIBRT) target_link_libraries(<target> ${LIB_RT}) endif() ``` ########## File path: cppcache/integration-test/CMakeLists.txt ########## @@ -69,6 +67,10 @@ add_clangformat(unit_test_callbacks) enable_testing() +if(UNIX AND NOT APPLE) Review comment: Perhaps something more like this? ``` find_library(LIB_RT rt) if (LIBRT) target_link_libraries(<target> ${LIB_RT}) endif() ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@geode.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org