1INTERFACE_SOURCES 2----------------- 3 4.. versionadded:: 3.1 5 6List of interface sources to compile into consuming targets. 7 8Targets may populate this property to publish the sources 9for consuming targets to compile. The :command:`target_sources` command 10populates this property with values given to the ``PUBLIC`` and 11``INTERFACE`` keywords. Projects may also get and set the property directly. 12 13When target dependencies are specified using :command:`target_link_libraries`, 14CMake will read this property from all target dependencies to determine the 15sources of the consumer. 16 17Contents of ``INTERFACE_SOURCES`` may use "generator expressions" 18with the syntax ``$<...>``. See the :manual:`cmake-generator-expressions(7)` 19manual for available expressions. See the :manual:`cmake-buildsystem(7)` 20manual for more on defining buildsystem properties. 21