When configuring various llvm projects that use AddLLVM.cmake, this warning is
emitted many times, flooding the screen:
Policy CMP0007 is not set: list command no longer ignores empty elements.
The fix is removing an extra semicolon.
Differential D14339
AddLLVM: squelch CMP0007 by not adding empty elements to list artagnon on Nov 4 2015, 10:55 AM. Authored by
Details When configuring various llvm projects that use AddLLVM.cmake, this warning is Policy CMP0007 is not set: list command no longer ignores empty elements. The fix is removing an extra semicolon.
Diff Detail
Event TimelineComment Actions LGTM. Make sure not to remove the newline at the end of the file, your uploaded diff did. Comment Actions It's actually an extra newline character that my editor automatically stripped out. *nix has the requirement that all lines must end with a newline character, not that a file must end with an empty line. Nothing I care about either way; just saying. |