in src/main/cpp/bootstrap/platformlauncher.cpp [647:657]
void PlatformLauncher::addToClassPath(const char *path, bool onlyIfExists) {
logMsg("addToClassPath()\n\tpath: %s\n\tonlyIfExists: %s", path, onlyIfExists ? "true" : "false");
if (onlyIfExists && !fileExists(path)) {
return;
}
if (!classPath.empty()) {
classPath += ';';
}
classPath += path;
}