https://github.com/Kitware/CMake
Revision 068cc545d905a5b0fd8caa09494c04346d0ca936 authored by Brad King on 31 August 2017, 15:00:52 UTC, committed by Brad King on 01 September 2017, 14:23:37 UTC
Refactoring in commit v3.8.0-rc1~445^2~2 (cmTarget: Move sanity checks
and computed property access to callers, 2016-10-13) exposed a typo in
commit v3.8.0-rc1~445^2~3 (cmGeneratorTarget: Implement
cmTargetPropertyComputer interface, 2016-10-13).  Together they broke
the `$<TARGET_PROPERTY:mytgt,SOURCES>` generator expression in the case
that the `SOURCES` target property is populated in part by the
`target_sources` command.  Add the missing `;`-separator.

Fixes: #17243
1 parent fca4423
Raw File
Tip revision: 068cc545d905a5b0fd8caa09494c04346d0ca936 authored by Brad King on 31 August 2017, 15:00:52 UTC
Genex: Fix TARGET_PROPERTY value of SOURCES
Tip revision: 068cc54
.gitattributes
.gitattributes   export-ignore
.hooks*          export-ignore

# Custom attribute to mark sources as using our C code style.
[attr]our-c-style  whitespace=tab-in-indent  format.clang-format

# Custom attribute to mark sources as generated.
# Do not perform whitespace checks.  Do not format.
[attr]generated  whitespace=-tab-in-indent,-indent-with-non-tab -format.clang-format

bootstrap        crlf=input
configure        crlf=input
*.[1-9]          crlf=input
*.sh             crlf=input
*.sh.in          crlf=input

*.bat           -crlf
*.bat.in        -crlf
*.dsp           -crlf
*.dsw           -crlf
*.pfx           -crlf
*.png           -crlf
*.sln           -crlf
*.vcproj        -crlf

*.c              our-c-style
*.cc             our-c-style
*.cpp            our-c-style
*.cu             our-c-style
*.cxx            our-c-style
*.h              our-c-style
*.hh             our-c-style
*.hpp            our-c-style
*.hxx            our-c-style
*.notcu          our-c-style

*.cmake          whitespace=tab-in-indent
*.rst            whitespace=tab-in-indent conflict-marker-size=79
*.txt            whitespace=tab-in-indent
back to top