summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeCommands/target_sources/subdir
Commit message (Collapse)AuthorAgeFilesLines
* target_sources: Interpret relative paths as relative to the calling directoryPatrick Stotko2018-06-183-0/+48
Previously the command considered non-absolute source file paths relative to the associated target on the LHS. This causes problems in incremental builds where files are added from subdirectories and forces users to workaround by manually converting to absolute paths. Change this to enable more intuitive usage by projects. Fixes #17981