https://github.com/Kitware/CMake
Revision 2ba5c37b3fed00ecc307b1d93780acd4a57695eb authored by Brad King on 25 June 2019, 18:37:38 UTC, committed by Brad King on 25 June 2019, 21:23:34 UTC
Refactoring in commit f5acecaa6f (cmExportCommand: Port to
cmArgumentParser, 2019-03-23, v3.15.0-rc1~270^2~3) broke the `export`
command's support for specifying `TARGETS` with no entries.  Fix it and
add a test case.

Fixes: #19415
1 parent 5c78809
Raw File
Tip revision: 2ba5c37b3fed00ecc307b1d93780acd4a57695eb authored by Brad King on 25 June 2019, 18:37:38 UTC
export: Restore support for empty TARGETS list
Tip revision: 2ba5c37
.clang-format
---
# This configuration requires clang-format version 6.0 exactly.
BasedOnStyle: Mozilla
AlignOperands: false
AllowShortFunctionsOnASingleLine: InlineOnly
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
  AfterClass:      true
  AfterEnum:       true
  AfterFunction:   true
  AfterStruct:     true
  AfterUnion:      true
BreakBeforeBraces: Custom
ColumnLimit: 79
IndentPPDirectives: AfterHash
SortUsingDeclarations: false
SpaceAfterTemplateKeyword: true
...
back to top