mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 16:14:38 +00:00
42 lines
1.2 KiB
PowerShell
42 lines
1.2 KiB
PowerShell
# This is a powershell script for computing the meshlab_final.nsi script.
|
|
# Requires:
|
|
# - a properly deployed meshlab (see windows_deploy.ps1);
|
|
#
|
|
# Without given arguments, the folder that will be deployed is meshlab/distrib.
|
|
#
|
|
# You can give as argument the DISTRIB_PATH.
|
|
#
|
|
# After running this script, a meshlab_final.script can be found in the resources folder.
|
|
# This script is ready to be run by makensis.exe
|
|
|
|
#saving location where script has been run
|
|
$DIR = Get-Location
|
|
|
|
$INSTALL_PATH = Join-Path $PSScriptRoot ..\
|
|
$SOURCE_PATH = Join-Path $PSScriptRoot ..\..\..\src
|
|
|
|
if ($args.Count -gt 0){
|
|
$DISTRIB_PATH = $args[0]
|
|
} else {
|
|
$DISTRIB_PATH = Join-Path $PSScriptRoot ..\..\..\distrib #default distrib
|
|
}
|
|
|
|
cd $DISTRIB_PATH
|
|
|
|
if(! (Test-Path meshlab.exe)){ #meshlab.exe not found inside $DISTRIB_PATH
|
|
cd $DIR
|
|
throw 'meshlab.exe not found in ' + ($DISTRIB_PATH) + '. Exiting.'
|
|
}
|
|
|
|
$VERSION = type (Join-Path $SOURCE_PATH ..\ML_VERSION)
|
|
|
|
cd $INSTALL_PATH
|
|
|
|
cat resources\meshlab.nsi | %{$_ -replace "MESHLAB_VERSION",$VERSION} > resources\meshlab_tmp.nsi
|
|
cat resources\meshlab_tmp.nsi | %{$_ -replace "DISTRIB_PATH",$DISTRIB_PATH} > resources\meshlab_final.nsi
|
|
|
|
Remove-Item resources\meshlab_tmp.nsi
|
|
|
|
#going back to original location
|
|
cd $DIR
|