| 265 | } |
| 266 | |
| 267 | std::string CMP_GetFullPath(std::string file) |
| 268 | { |
| 269 | #if defined _CMP_CPP17_ || defined _CMP_CPP14_ |
| 270 | sfs::path p(file); |
| 271 | sfs::path fullpath = sfs::absolute(p); |
| 272 | return fullpath.generic_string(); |
| 273 | //return sfs::absolute(file).string(); |
| 274 | #else |
| 275 | return file; |
| 276 | #endif |
| 277 | } |
| 278 | |
| 279 | static std::vector<std::string> GetFilesInSubdirectory(const std::string& directory, const std::string& filter) |
| 280 | { |
no outgoing calls
no test coverage detected