Commit f01bab66 authored by Matt Arsenault's avatar Matt Arsenault

Fix cmake not linking librt to perf-tools

parent 7bc3e53b
......@@ -51,6 +51,8 @@ check_library_exists(ws2 printf "" HAVE_WS2)
check_library_exists(rpcrt4 printf "" HAVE_RPCRT4) # UuidCreateSequential
check_library_exists(iphlpapi printf "" HAVE_IPHLAPI) # GetAdaptersAddresses
find_library(RT_LIBRARY rt)
find_package(Threads)
......@@ -541,6 +543,10 @@ if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug") # Why?
add_executable(${perf-tool} perf/${perf-tool}.cpp)
target_link_libraries(${perf-tool} libzmq)
if(RT_LIBRARY)
target_link_libraries(${perf-tool} ${RT_LIBRARY})
endif()
if(ZMQ_BUILD_FRAMEWORK)
# Copy perf-tools binaries into Framework
add_custom_command(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment