I have a question regarding installing a snapshot build with shared plugins.
Right now I can use (in the .mk file)
to copy the whole lot of engines.cp ($PLUGINS) ($INSTALLATIONPATH)/plugins/
But of course they will be non-stripped.
Is there a way to also access all plugins as single files?
Like, I want to do something like that
without adding a line for all the plugins (since they will change in the future anyway).($STRIP) single_plugin -o ($INSTALLATIONPATH)/plugins/single_plugin
Would that be possible with already available (makefile/.mk) variables, or do I need to solve this locally (which I could do aswell, just wanted to know if It could be done with "on-board" methods)?
The problem I have is, that
do strip all the files, however also somehow mangles or breaks them and makes them unusable in ScummVM afterwards. (Probably a bug in my strip command)strip plugins/*
Thanks a lot