| 48 | } |
| 49 | |
| 50 | static std::string objfile(std::string cppfile) |
| 51 | { |
| 52 | cppfile.erase(cppfile.rfind('.')); |
| 53 | if (startsWith(cppfile, "../externals/simplecpp/")) // oss-fuzz |
| 54 | cppfile = cppfile.substr(23); |
| 55 | else if (startsWith(cppfile, "../externals/tinyxml2/")) // oss-fuzz |
| 56 | cppfile = cppfile.substr(22); |
| 57 | return builddir(cppfile + ".o"); |
| 58 | } |
| 59 | |
| 60 | static std::string objfiles(const std::vector<std::string> &files) |
| 61 | { |
no test coverage detected