mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 08:09:39 +00:00
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
SCRIPTS_PATH="$(dirname "$(realpath "$0")")"/..
|
|
RESOURCES_PATH=$SCRIPTS_PATH/../../resources
|
|
INSTALL_PATH=$SCRIPTS_PATH/../../install
|
|
QT_DIR=""
|
|
|
|
#checking for parameters
|
|
for i in "$@"
|
|
do
|
|
case $i in
|
|
-i=*|--install_path=*)
|
|
INSTALL_PATH="${i#*=}"
|
|
shift # past argument=value
|
|
;;
|
|
-qt=*|--qt_dir=*)
|
|
QT_DIR=${i#*=}/bin/
|
|
shift # past argument=value
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
done
|
|
|
|
${QT_DIR}windeployqt $INSTALL_PATH/meshlab.exe
|
|
|
|
${QT_DIR}windeployqt $INSTALL_PATH/plugins/filter_sketchfab.dll --libdir $INSTALL_PATH/
|
|
|
|
mv $INSTALL_PATH/lib/meshlab/IFX* $INSTALL_PATH
|
|
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..."
|
|
wget https://aka.ms/vs/17/release/vc_redist.x64.exe --output-document=$INSTALL_PATH/vc_redist.x64.exe
|
|
fi |