diff options
author | Bryan O'Sullivan <bos@lindenlab.com> | 2008-06-02 21:14:31 +0000 |
---|---|---|
committer | Bryan O'Sullivan <bos@lindenlab.com> | 2008-06-02 21:14:31 +0000 |
commit | 9db949eec327df4173fde3de934a87bedb0db13c (patch) | |
tree | aeffa0f0e68b1d2ceb74d460cbbd22652c9cd159 /indra/linux_crash_logger | |
parent | 419e13d0acaabf5e1e02e9b64a07648bce822b2f (diff) |
svn merge -r88066:88786 svn+ssh://svn.lindenlab.com/svn/linden/branches/cmake-9-merge
dataserver-is-deprecated
for-fucks-sake-whats-with-these-commit-markers
Diffstat (limited to 'indra/linux_crash_logger')
-rw-r--r-- | indra/linux_crash_logger/CMakeLists.txt | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/indra/linux_crash_logger/CMakeLists.txt b/indra/linux_crash_logger/CMakeLists.txt new file mode 100644 index 0000000000..a3a4d6be0b --- /dev/null +++ b/indra/linux_crash_logger/CMakeLists.txt @@ -0,0 +1,81 @@ +# -*- cmake -*- + +project(linux_crash_logger) + +include(00-Common) +include(Boost) +include(LLCommon) +include(LLCrashLogger) +include(LLMath) +include(LLMessage) +include(LLVFS) +include(LLXML) +include(Linking) +include(UI) + +include_directories( + ${LLCOMMON_INCLUDE_DIRS} + ${LLCRASHLOGGER_INCLUDE_DIRS} + ${LLMATH_INCLUDE_DIRS} + ${LLVFS_INCLUDE_DIRS} + ${LLXML_INCLUDE_DIRS} + ) + +set(linux_crash_logger_SOURCE_FILES + linux_crash_logger.cpp + llcrashloggerlinux.cpp + ) + +set(linux_crash_logger_HEADER_FILES + CMakeLists.txt + + llcrashloggerlinux.h + ) + +set_source_files_properties(${linux_crash_logger_HEADER_FILES} + PROPERTIES HEADER_FILE_ONLY TRUE) + +list(APPEND linux_crash_logger_SOURCE_FILES + ${linux_crash_logger_HEADER_FILES} + ) + +list(APPEND CMAKE_EXE_LINKER_FLAGS -Wl,--as-needed) + +add_executable(linux-crash-logger ${linux_crash_logger_SOURCE_FILES}) + +target_link_libraries(linux-crash-logger + ${LLCRASHLOGGER_LIBRARIES} + ${LLVFS_LIBRARIES} + ${LLXML_LIBRARIES} + ${LLMESSAGE_LIBRARIES} + ${LLVFS_LIBRARIES} + ${LLMATH_LIBRARIES} + ${LLCOMMON_LIBRARIES} + ${UI_LIBRARIES} + ${BOOST_SIGNALS_LIBRARY} + ${DB_LIBRARIES} + ) + +add_custom_command( + OUTPUT linux-crash-logger-stripped-globalsyms + COMMAND strip + ARGS --strip-debug -o linux-crash-logger-stripped-globalsyms + linux-crash-logger + DEPENDS linux-crash-logger + ) + +add_custom_command( + OUTPUT linux-crash-logger-stripped + COMMAND objcopy + ARGS + --keep-global-symbols + ${VIEWER_DIR}/newview/linux_tools/exposed-symbols.txt + linux-crash-logger-stripped-globalsyms + linux-crash-logger-stripped + DEPENDS + linux-crash-logger-stripped-globalsyms + ${VIEWER_DIR}/newview/linux_tools/exposed-symbols.txt + ) + +add_custom_target(linux-crash-logger-stripped ALL + DEPENDS linux-crash-logger-stripped) |