8adacba3e6
Use VERBATIM option to prepare the correct command line for the add_custom_command. This especially sensitive when using build directories with names containing special symbols, that cannot be handled by shell correctly. Change-Id: I51d7041cb806411135fd59bf6273c04a3c695443 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
12 lines
470 B
CMake
12 lines
470 B
CMake
# special case skip regeneration
|
|
cmake_minimum_required(VERSION 3.16)
|
|
project(objcopytest LANGUAGES CXX)
|
|
add_executable(objcopytest main.cpp)
|
|
add_custom_command(
|
|
TARGET objcopytest
|
|
POST_BUILD
|
|
COMMAND ${CMAKE_OBJCOPY} --only-keep-debug $<TARGET_FILE:objcopytest> objcopytest.debug
|
|
COMMAND ${CMAKE_OBJCOPY} --strip-debug $<TARGET_FILE:objcopytest>
|
|
COMMAND ${CMAKE_OBJCOPY} --add-gnu-debuglink=objcopytest.debug $<TARGET_FILE:objcopytest>
|
|
VERBATIM)
|