mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
When installing FILE_SETs, it is possible the FILE_SET has not yet been created with target_sources(FILE_SET). Instead of ignoring this situation, we need to track the installed FILE_SET names and their possible install destinations. At generation time we resolve the names and destinations concretely. If a FILE_SET wasn't provided or isn't an INTERFACE, we silently bail out. Fixes: #26697
8 lines
298 B
ReStructuredText
8 lines
298 B
ReStructuredText
install-nonextant-file-set
|
|
--------------------------
|
|
|
|
* The :command:`install(TARGETS)` command no longer ignores file sets which
|
|
haven't been defined at the point it is called. The ordering of
|
|
:command:`target_sources(FILE_SET)` and ``install(TARGETS)`` is no longer
|
|
semantically relevant.
|