-
Notifications
You must be signed in to change notification settings - Fork 274
/
Copy pathDebugEdit.cmake
45 lines (42 loc) · 1.54 KB
/
DebugEdit.cmake
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
# BAREOS® - Backup Archiving REcovery Open Sourced
#
# Copyright (C) 2024-2024 Bareos GmbH & Co. KG
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of version three of the GNU Affero General Public
# License as published by the Free Software Foundation and included
# in the file LICENSE.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
find_program(DEBUGEDIT_PROG debugedit HINTS /usr/lib/rpm)
option(DEBUGEDIT_REWRITE
"Rewrite DW_AT_comp_dir in ELF objects to the real path" ON
)
if(DEBUGEDIT_REWRITE
AND DEBUGEDIT_PROG
AND NOT HAVE_WIN32
)
get_directory_property(directory_targets BUILDSYSTEM_TARGETS)
foreach(target ${directory_targets})
get_target_property(target_type ${target} TYPE)
if(target_type STREQUAL EXECUTABLE
OR target_type STREQUAL SHARED_LIBRARY
OR target_type STREQUAL MODULE_LIBRARY
)
add_custom_command(
TARGET ${target}
POST_BUILD
COMMAND ${DEBUGEDIT_PROG} -b /usr/src/bareos -d ${CMAKE_SOURCE_DIR}
$<TARGET_FILE:${target}>
)
endif()
endforeach()
endif()