[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Sc-devel] Minimizing compile printouts
hi,
i wonder if there would be any problem to comment out:
Main {
...
// platformClass {
// // override in platform specific extension
// ^Platform
// }
}
and delete extClassBrowser.sc, instead adding the content to
LinuxPlatform and WindowsPlatform:
LinuxPlatform {
...
openSVN{ |svnAddr|
"WARNING: not implemented for this platform".postln;
("open the url:"+svnAddr+"in your browser").postln;
}
}
WindowsPlatform {
...
openSVN{ |svnAddr|
"WARNING: not implemented for this platform".postln;
("open the url:"+svnAddr+"in your browser").postln;
}
}
so the two remaining "Extensions overwrite ..." printouts in the
class lib compile disappear?
ciao, -sciss-