2017-07-07 13:02:00 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
function addFile {
|
2017-07-07 15:04:46 +02:00
|
|
|
echo $1
|
2017-07-07 13:02:00 +02:00
|
|
|
cp $1 .
|
|
|
|
echo "Source: \"$(basename $1)\"; DestDir: \"{app}\"; Flags: ignoreversion" >> installer.iss
|
|
|
|
}
|
2017-07-07 14:38:43 +02:00
|
|
|
|
2017-07-07 15:33:56 +02:00
|
|
|
function addFileIn {
|
|
|
|
echo $1
|
|
|
|
mkdir -p $2
|
|
|
|
cp $1 $2
|
2017-07-07 15:41:18 +02:00
|
|
|
echo "Source: \"$2\\$(basename $1)\"; DestDir: \"{app}\\$2\"; Flags: ignoreversion" >> installer.iss
|
2017-07-07 15:33:56 +02:00
|
|
|
}
|
|
|
|
|
2017-07-07 13:02:00 +02:00
|
|
|
ver=$(cat main.cpp | grep setApplicationVersion | sed "s/\\s*a.setApplicationVersion(\"//g" | sed "s/\");//g")
|
|
|
|
|
|
|
|
cd packages/windows
|
|
|
|
cp ../../KShare.exe . || exit 1
|
|
|
|
|
|
|
|
sed "s/;VER;/$ver/" installer.iss.pattern.top > installer.iss
|
|
|
|
|
2017-07-07 15:13:20 +02:00
|
|
|
addFile ../../build/QtAV-depends-windows-x86+x64/bin/avcodec-57.dll
|
|
|
|
addFile ../../build/QtAV-depends-windows-x86+x64/bin/avformat-57.dll
|
|
|
|
addFile ../../build/QtAV-depends-windows-x86+x64/bin/avutil-55.dll
|
2017-07-07 15:21:13 +02:00
|
|
|
addFile ../../build/QtAV-depends-windows-x86+x64/bin/swresample-2.dll
|
2017-07-07 15:13:20 +02:00
|
|
|
addFile ../../build/QtAV-depends-windows-x86+x64/bin/swscale-4.dll
|
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/Qt5Core.dll
|
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/Qt5Network.dll
|
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/Qt5Gui.dll
|
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/Qt5Widgets.dll
|
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/Qt5WinExtras.dll
|
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/Qt5Network.dll
|
2017-07-07 15:33:56 +02:00
|
|
|
|
|
|
|
addFileIn /c/Qt/5.9/mingw53_32/plugins/platforms/qwindows.dll platforms
|
|
|
|
|
2017-07-07 15:13:20 +02:00
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/LIBSTDC++-6.DLL
|
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/LIBWINPTHREAD-1.DLL
|
|
|
|
addFile /c/Qt/5.9/mingw53_32/bin/LIBGCC_S_DW2-1.DLL
|
2017-07-07 14:38:43 +02:00
|
|
|
|
2017-07-07 13:02:00 +02:00
|
|
|
cat installer.iss.pattern.bottom >> installer.iss
|
|
|
|
"C:\Program Files (x86)\Inno Setup 5\ISCC.exe" installer.iss
|
|
|
|
cp Output/setup.exe ../../installer.exe || exit 1
|