Fix output files of the *_header_check targets
Header files of a Qt module are usually found in subdirectories. Avoid creating object file paths like "header_foo/bar.h.o". When building with conan, the "header_foo" subdirectory was not created for whatever reason. Now, we make sure we have clean object file paths, e.g. "header_check/foo/bar.h.o", and we create the directory upfront before invoking the compiler. Fixes: QTBUG-90529 Change-Id: Ifa5d6b97e07fc4e249c58cda5128439d60b14f5f Reviewed-by: Kai Koehne <kai.koehne@qt.io> (cherry picked from commit 54980200c79b466a276a4d3054390e4b3162e9ed) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
ed05ef7758
commit
71e3857f7c
@ -162,13 +162,15 @@ function(qt_internal_add_headers_clean_target
|
||||
|
||||
foreach(header ${hclean_headers})
|
||||
get_filename_component(input_path "${header}" ABSOLUTE)
|
||||
set(artifact_path "header_${header}.o")
|
||||
set(artifact_path "header_check/${header}.o")
|
||||
get_filename_component(artifact_directory "${artifact_path}" DIRECTORY)
|
||||
set(comment_header_path "${CMAKE_CURRENT_SOURCE_DIR}/${header}")
|
||||
file(RELATIVE_PATH comment_header_path "${PROJECT_SOURCE_DIR}" "${comment_header_path}")
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT "${artifact_path}"
|
||||
COMMENT "headersclean: Checking header ${comment_header_path}"
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory "${artifact_directory}"
|
||||
COMMAND
|
||||
${compiler_to_run} -c ${cxx_flags}
|
||||
"${target_compile_flags_joined_genex}"
|
||||
|
Loading…
Reference in New Issue
Block a user