From 9bdd1df3acfaceb8e4b7fa9971fda1ebc803363e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=28Charybdis=29?= Date: Sat, 19 May 2018 14:06:58 +0200 Subject: [PATCH] Do not filter by files extension in mex/octave{,32}... ... when building the windows installer. --- windows/dynare.nsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/dynare.nsi b/windows/dynare.nsi index 90439db68..e282af120 100644 --- a/windows/dynare.nsi +++ b/windows/dynare.nsi @@ -114,12 +114,12 @@ SectionGroup "MEX files for OCTAVE" Section "MEX files for Octave 4.2.1 (MinGW, 64bit)" SetOutPath $INSTDIR\mex\octave - File ..\mex\octave\*.mex + File ..\mex\octave\* SectionEnd Section "MEX files for Octave 4.2.1 (MinGW, 32bit)" SetOutPath $INSTDIR\mex\octave32 - File ..\mex\octave32\*.mex + File ..\mex\octave32\* SectionEnd SectionGroupEnd