| 37 | } |
| 38 | |
| 39 | std::string getRelativePath(std::string path, std::string projectBuildPath) { |
| 40 | return regex(path, "^" + projectBuildPath + "/?(.+)", 1); |
| 41 | } |
| 42 | |
| 43 | std::string replaceString(std::string OriginalStr, std::string FromStr, |
| 44 | std::string ToStr) { |