[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sc-dev] several plugin paths in supernova win32 -U option
Hello Tim
I had to do this in order to allow several paths in -U option for supernova
in win32
if (!args.ugen_paths.empty()) {
string dire;
for(path const & path1 : args.ugen_paths)
dire += path1.string();
vector<std::string> directories;
boost::split(directories, dire, boost::is_any_of(pathSeparator));
for(string const & path : directories){
factory->load_plugin_folder(path);
}
}
where
#ifndef _WIN32
const char pathSeparator[] = ":";
#else
const char pathSeparator[] = ";";
#endif
had to be moved before in the file
my knowledge of boost is very poor, so there must be something better than
merging in a string for doing a split later.
Best
Victor
_______________________________________________
sc-dev mailing list
info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: https://listarc.bham.ac.uk/marchives/sc-dev/
search: https://listarc.bham.ac.uk/lists/sc-dev/search/