summaryrefslogtreecommitdiff
path: root/indra/linux_crash_logger
diff options
context:
space:
mode:
authorRider Linden <none@none>2015-04-30 14:52:20 -0700
committerRider Linden <none@none>2015-04-30 14:52:20 -0700
commit7c639f11a6a4bb0b194d97e9932310561e11df71 (patch)
tree62ec2ffae8dd03503f7186a1b4f2b2f2193d5252 /indra/linux_crash_logger
parentcc26fb5b24c0276e01c66d0eb6c695831809ad69 (diff)
Change link order
Diffstat (limited to 'indra/linux_crash_logger')
-rwxr-xr-xindra/linux_crash_logger/CMakeLists.txt10
1 files changed, 3 insertions, 7 deletions
diff --git a/indra/linux_crash_logger/CMakeLists.txt b/indra/linux_crash_logger/CMakeLists.txt
index 67b3ed109a..480a55a709 100755
--- a/indra/linux_crash_logger/CMakeLists.txt
+++ b/indra/linux_crash_logger/CMakeLists.txt
@@ -56,12 +56,8 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--as-needed")
add_executable(linux-crash-logger ${linux_crash_logger_SOURCE_FILES})
-if (LINUX)
- # llcommon uses `clock_gettime' which is provided by librt on linux.
- set(LIBRT_LIBRARY
- rt
- )
-endif (LINUX)
+# llcommon uses `clock_gettime' which is provided by librt on linux.
+set(LIBRT_LIBRARY rt)
target_link_libraries(linux-crash-logger
@@ -72,8 +68,8 @@ target_link_libraries(linux-crash-logger
${LLVFS_LIBRARIES}
${LLMATH_LIBRARIES}
${LLCOREHTTP_LIBRARIES}
- ${LLCOMMON_LIBRARIES}
${LIBRT_LIBRARY}
+ ${LLCOMMON_LIBRARIES}
${BOOST_CONTEXT_LIBRARY}
${BOOST_COROUTINE_LIBRARY}
${UI_LIBRARIES}