]> git.lyx.org Git - lyx.git/blob - development/Win32/packaging/installer/lyx.nsi
Change windows installer comments from ; to #
[lyx.git] / development / Win32 / packaging / installer / lyx.nsi
1 /*\r
2 \r
3 NSIS Script - LyX 1.4 Installer for Win32\r
4 Authors: Joost Verburg, Angus Leeming, Uwe Stöhr\r
5 Requires NSIS 2.21 or later\r
6 \r
7 Licence details for all installer scripts can be found\r
8 in the file COPYING or at http://www.lyx.org/about/license.php\r
9 \r
10 */\r
11 \r
12 SetCompressor /SOLID lzma\r
13 \r
14 !include "include\declarations.nsh"\r
15 \r
16 #--------------------------------\r
17 #Compile the launcher\r
18 \r
19 !system '"${NSISDIR}\makensis.exe" "${FILES_LAUNCHER}\launcher.nsi"'\r
20 \r
21 #--------------------------------\r
22 #Compile Windows PDF view helper\r
23 \r
24 !system '"${NSISDIR}\makensis.exe" "${FILES_PDFVIEW}\pdfview.nsi"'\r
25 \r
26 #--------------------------------\r
27 #LyX Installer, output file can be specified using command line option\r
28 # /DExeFile=/path/to/installer\r
29 \r
30 !ifdef ExeFile\r
31 !ifdef SETUPTYPE_BUNDLE\r
32 OutFile "${BundleExeFile}"\r
33 !else\r
34 OutFile "${ExeFile}"\r
35 !endif\r
36 !else\r
37 Outfile "${SETUP_EXE}"\r
38 !endif\r
39 \r
40 #--------------------------------\r
41 #Components\r
42 \r
43 !include "components\core.nsh"\r
44 !include "components\user.nsh"\r
45 !include "components\reinstall.nsh"\r
46 !include "components\external.nsh"\r
47 !include "components\viewer.nsh"\r
48 !include "components\dicts.nsh"\r
49 !include "components\langselect.nsh"\r
50 !include "components\configure.nsh"\r
51 !include "components\uninstall.nsh"\r