CMake: Pass Python extension files to Interrogate with relative paths

This makes sure absolute paths don't show up in #include,
since Interrogate doesn't (currently) use the proper representation
for this. (See #386)
This commit is contained in:
Sam Edwards 2018-09-07 00:03:26 -06:00
parent 9f55b9e77e
commit 193cf71233
1 changed files with 6 additions and 1 deletions

View File

@ -164,6 +164,12 @@ function(interrogate_sources target output database language_flags)
endif()
endforeach(source)
# Also add extensions, in relative-path form
foreach(extension ${extensions})
file(RELATIVE_PATH rel_extension "${srcdir}" "${extension}")
list(APPEND scan_sources "${rel_extension}")
endforeach(extension)
# Interrogate also needs the include paths, so we'll extract them from the
# target. These are available via a generator expression.
@ -224,7 +230,6 @@ function(interrogate_sources target output database language_flags)
-S "${PYTHON_INCLUDE_DIRS}"
${include_flags}
${scan_sources}
${extensions}
DEPENDS host_interrogate ${sources} ${extensions} ${nfiles}
COMMENT "Interrogating ${target}"
)