| 3 | #include "cmCustomCommandLines.h" |
| 4 | |
| 5 | cmCustomCommandLine cmMakeCommandLine( |
| 6 | std::initializer_list<cm::string_view> ilist) |
| 7 | { |
| 8 | cmCustomCommandLine commandLine; |
| 9 | commandLine.reserve(ilist.size()); |
| 10 | for (cm::string_view cmd : ilist) { |
| 11 | commandLine.emplace_back(cmd); |
| 12 | } |
| 13 | return commandLine; |
| 14 | } |
| 15 | |
| 16 | cmCustomCommandLines cmMakeSingleCommandLine( |
| 17 | std::initializer_list<cm::string_view> ilist) |
no test coverage detected
searching dependent graphs…