| 70 | |
| 71 | |
| 72 | void COpenCL::SetClFilesPath(const char * Path) |
| 73 | { |
| 74 | m_ClFilesPath = Path; |
| 75 | if (m_ClFilesPath[m_ClFilesPath.size() - 1] != '\\' && |
| 76 | m_ClFilesPath[m_ClFilesPath.size() - 1] != '/') |
| 77 | { |
| 78 | // Missing trailing slash |
| 79 | m_ClFilesPath += "/"; |
| 80 | } |
| 81 | |
| 82 | } |
| 83 | |
| 84 | const string& COpenCL::GetClFilePath() |
| 85 | { |