mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
7bfcb2de60
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24740 a592a061-630c-0410-9148-cb99ea01b6c8
56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
/*
|
|
|
|
NSIS Script - LyX 1.5/1.6 Installer for Win32
|
|
Authors: Joost Verburg, Angus Leeming, Uwe Stöhr
|
|
Requires NSIS 2.36 or later
|
|
|
|
Licence details for all installer scripts can be found in the file COPYING
|
|
|
|
*/
|
|
|
|
!include settings.nsh
|
|
|
|
#--------------------------------
|
|
# Header files
|
|
|
|
!include include\declarations.nsh
|
|
!include include\variables.nsh
|
|
!include include\nsis.nsh
|
|
|
|
!include include\dictlist.nsh
|
|
!include include\filelist.nsh
|
|
!include include\langlist.nsh
|
|
|
|
!include include\detection.nsh
|
|
!include include\gui.nsh
|
|
!include include\init.nsh
|
|
|
|
#--------------------------------
|
|
# The following commands use makensis to compile two applications.
|
|
# Although these applications are written in NSIS, they do not install anything.
|
|
|
|
# Compile the launcher
|
|
!system '"${NSISDIR}\makensis.exe" "${FILES_LAUNCHER}\launcher.nsi"'
|
|
|
|
# Compile Windows PDF view helper
|
|
!system '"${NSISDIR}\makensis.exe" "${FILES_PDFVIEW}\pdfview.nsi"'
|
|
|
|
#--------------------------------
|
|
# Setup
|
|
|
|
!include setup\install.nsh
|
|
!include setup\uninstall.nsh
|
|
!include setup\configure.nsh
|
|
|
|
#--------------------------------
|
|
# User interface (wizard pages)
|
|
|
|
!include gui\external.nsh
|
|
!include gui\langselect.nsh
|
|
!include gui\reinstall.nsh
|
|
|
|
#--------------------------------
|
|
# Output file
|
|
|
|
Outfile "${SETUP_EXE}"
|