]> git.lyx.org Git - lyx.git/blob - development/Win32/packaging/installer/lyx.nsi
delete old Aspell/Aiksaurus setup code
[lyx.git] / development / Win32 / packaging / installer / lyx.nsi
1 /*
2
3 NSIS Script - LyX 1.5/1.6 Installer for Win32
4 Authors: Joost Verburg, Angus Leeming, Uwe Stöhr
5 Requires NSIS 2.36 or later
6
7 Licence details for all installer scripts can be found in the file COPYING
8
9 */
10
11 !include settings.nsh
12
13 #--------------------------------
14 # Header files  
15
16 !include include\declarations.nsh
17 !include include\variables.nsh
18 !include include\nsis.nsh
19
20 !include include\filelist.nsh
21 !include include\langlist.nsh
22
23 !include include\detection.nsh
24 !include include\gui.nsh
25 !include include\init.nsh
26
27 #--------------------------------
28 # The following commands use makensis to compile two applications.
29 # Although these applications are written in NSIS, they do not install anything.
30
31 # Compile the launcher
32 !system '"${NSISDIR}\makensis.exe" "${FILES_LAUNCHER}\launcher.nsi"'
33
34 # Compile Windows PDF view helper
35 !system '"${NSISDIR}\makensis.exe" "${FILES_PDFVIEW}\pdfview.nsi"'
36
37 #--------------------------------
38 # Setup
39
40 !include setup\install.nsh
41 !include setup\uninstall.nsh
42 !include setup\configure.nsh
43
44 #--------------------------------
45 # User interface (wizard pages)
46
47 !include gui\external.nsh
48 !include gui\langselect.nsh
49 !include gui\reinstall.nsh
50
51 #--------------------------------
52 # Output file
53
54 Outfile "${SETUP_EXE}"