2007-05-15 01:31:19 +00:00
|
|
|
# this script compiles the three different installer variants at once
|
2012-02-19 13:13:05 +00:00
|
|
|
# this is necessary when the installer should e.g. be built by CMake
|
2007-05-15 01:31:19 +00:00
|
|
|
|
|
|
|
SetCompressor /SOLID lzma
|
|
|
|
|
|
|
|
#--------------------------------
|
|
|
|
# The following commands use makensis to compile the three different installer variants.
|
|
|
|
|
|
|
|
#--------------------------------
|
|
|
|
#Compile the Update Installer
|
|
|
|
|
|
|
|
!system '"${NSISDIR}\makensis.exe" "LyXInstaller-Update.nsi"'
|
|
|
|
|
|
|
|
#--------------------------------
|
|
|
|
#Compile the Small Installer
|
|
|
|
|
|
|
|
!system '"${NSISDIR}\makensis.exe" "LyXInstaller-Small.nsi"'
|
|
|
|
|
|
|
|
#--------------------------------
|
|
|
|
#Compile the Complete Installer
|
|
|
|
|
|
|
|
!system '"${NSISDIR}\makensis.exe" "LyXInstaller-Complete.nsi"'
|
|
|
|
|