Here is an example script from CMake documentation:
target_link_libraries(myExe lib1 lib2 lib3)
target_include_directories(myExe
PRIVATE $<TARGET_PROPERTY:lib3,INTERFACE_INCLUDE_DIRECTORIES>)
What is the meaning of $<>
here? Can it be substituted with ${}
?