remove usefulness lib files from windows release

This commit is contained in:
alemuntoni 2022-12-14 09:27:26 +01:00
parent 5a7116de0e
commit cf38b452d2

View File

@ -32,6 +32,12 @@ cp $INSTALL_PATH/IFXCoreStatic.lib $INSTALL_PATH/lib/meshlab/
cp $RESOURCES_PATH/LICENSE.txt $INSTALL_PATH/
cp $RESOURCES_PATH/privacy.txt $INSTALL_PATH/
# remove all .lib files
for file in $(find $INSTALL_PATH -name '*.lib');
do
rm $file
done
if [ ! -f $INSTALL_PATH/vc_redist.x64.exe ]
then
echo "Downloading vc_redist because it was missing..."