X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/498efdef20d0e4c1fe5b5f5d5f7611bc08e4f137..0737811621d4cbb82a0c891d56b3224e839826ac:/win32/installer.bat?ds=inline diff --git a/win32/installer.bat b/win32/installer.bat index 7bf41a80..b05c691c 100644 --- a/win32/installer.bat +++ b/win32/installer.bat @@ -5,14 +5,9 @@ :: echo STARTING INSTALLER PROCESS... -:: For windres + strip +:: For strip set PATH=%PATH%;%SystemDrive%\MinGW\bin -echo Create Icon -pushd installer\pixmaps -windres.exe viking_icon.rc -o viking_icon.o -popd - echo Remove debugging symbols pushd ..\src strip.exe -g viking.exe @@ -82,6 +77,13 @@ if exist "%LIBMAGIC%" ( echo Required %LIBMAGIC% does not exist goto Tidy ) +set LIBSQL3=%MINGW_BIN%\sqlite3.dll +if exist "%LIBSQL3%" ( + %MYCOPY% "%LIBSQL3%" %DESTINATION% +) else ( + echo Required %LIBSQL3% does not exist + goto Tidy +) :: TODO Maybe embed http://gtk-win.sourceforge.net/home/index.php/Main/EmbeddingGTK directly in NSIS? :: Best to use the same GTK version as we built against in prepare.bat!!