| 993 | } |
| 994 | |
| 995 | std::string cmCPackNSISGenerator::CustomComponentInstallDirectory( |
| 996 | cm::string_view componentName) |
| 997 | { |
| 998 | cmValue outputDir = this->GetOption( |
| 999 | cmStrCat("CPACK_NSIS_", componentName, "_INSTALL_DIRECTORY")); |
| 1000 | return outputDir ? *outputDir : "$INSTDIR"; |
| 1001 | } |
| 1002 | |
| 1003 | std::string cmCPackNSISGenerator::TranslateNewlines(std::string str) |
| 1004 | { |
no test coverage detected