mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
ParseAndAddCatchTests: Ignore cmake object libraries
This commit is contained in:
parent
d4eec016a9
commit
ac94bd0520
@ -88,6 +88,11 @@ endfunction()
|
|||||||
|
|
||||||
# Worker function
|
# Worker function
|
||||||
function(ParseAndAddCatchTests_ParseFile SourceFile TestTarget)
|
function(ParseAndAddCatchTests_ParseFile SourceFile TestTarget)
|
||||||
|
# If SourceFile is an object library, do not scan it (as it is not a file). Exit without giving a warning about a missing file.
|
||||||
|
if(SourceFile MATCHES "\\\$<TARGET_OBJECTS:.+>")
|
||||||
|
ParseAndAddCatchTests_PrintDebugMessage("Detected OBJECT library: ${SourceFile} this will not be scanned for tests.")
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
# According to CMake docs EXISTS behavior is well-defined only for full paths.
|
# According to CMake docs EXISTS behavior is well-defined only for full paths.
|
||||||
get_filename_component(SourceFile ${SourceFile} ABSOLUTE)
|
get_filename_component(SourceFile ${SourceFile} ABSOLUTE)
|
||||||
if(NOT EXISTS ${SourceFile})
|
if(NOT EXISTS ${SourceFile})
|
||||||
|
Loading…
Reference in New Issue
Block a user