-
Notifications
You must be signed in to change notification settings - Fork 1
/
leo.nsi
26 lines (20 loc) · 814 Bytes
/
leo.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
!addincludedir c:\leo.repo\trunk\leo\dist
!include MUI2.nsh
!include nsDialogs.nsh
!include LogicLib.nsh
;##version
!define version "4.11-final"
; These are *not* Python strings--backslashes are fine.
!define app_icon "leo\Icons\LeoApp.ico"
!define doc_icon "leo\Icons\LeoDoc.ico"
; This works, but the icon is too small.
;!define icon "C:\leo.repo\trunk\leo\Icons\SplashScreen.ico"
!define ext ".leo"
!define leo_hklm "SOFTWARE\EKR\Leo"
!define license "License.txt"
!define name "Leo"
!define publisher "Edward K. Ream"
!define site "http://leoeditor.com/"
!define target_file "LeoSetup-${version}.exe"
!define uninst_key "Software\Microsoft\Windows\CurrentVersion\Uninstall\leo"
!include nsi-boilerplate.txt