Get SOURCES of Target

Not even if I use a generator expression myself, so something like:

$<TARGET_PROPERTY:${target},SPECIFIED_SOURCES>

Is there like some order in which generator expressions are evaluated? So if I have:

target_sources(MyTarget $<...>)
$<TARGET_PROPERTY:${target},SPECIFIED_SOURCES>

Is it just the order in which they are, so the one in target sources is evaluated earlier?

Based on some Tests SOURCES contain relative paths for the sources in the same directory of the target (so basically just the file names) and absolute path for any subdirectories.
Which is weird to be honest :smiley:
I would expect all to be a relative path.