blob: a3a4d6be0b545a0aa50ad425efa06636f3b25097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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)
|