From 2b083075b5ccb542cb5d1924371245500830db84 Mon Sep 17 00:00:00 2001 From: Jussi Lindgren Date: Wed, 1 Jun 2016 17:18:09 +0200 Subject: [PATCH] Build: Fixed a bug in Windows installer nsi script Visual Studio redists were not correctly installed. --- scripts/win32-openvibe-x.x.x-setup.nsi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/win32-openvibe-x.x.x-setup.nsi b/scripts/win32-openvibe-x.x.x-setup.nsi index 61ab7ddcf..d09aa61cc 100644 --- a/scripts/win32-openvibe-x.x.x-setup.nsi +++ b/scripts/win32-openvibe-x.x.x-setup.nsi @@ -5,8 +5,8 @@ !include "zipdll.nsh" ;Name and file - Name "OpenViBE 1.2.0" - OutFile "openvibe-1.2.0-setup.exe" + Name "OpenViBE 1.2.0-1" + OutFile "openvibe-1.2.0-1-setup.exe" ;Default installation folder InstallDir "$PROGRAMFILES\openvibe" @@ -115,8 +115,8 @@ no_need_to_install_directx: File "..\dependencies\arch\vcredist-2010.exe" File "..\dependencies\arch\vcredist-2013_x86.exe" - ExecWait '"arch\vcredist-2010.exe" /q' - ExecWait '"arch\vcredist-2013_x86.exe" /install /quiet' + ExecWait '"vcredist-2010.exe" /q' + ExecWait '"vcredist-2013_x86.exe" /install /quiet' SetOutPath "$INSTDIR\dependencies" ZipDLL::extractall "arch\ov-dependencies-1.2.0-vc120-runtime.zip" "" -- GitLab