63 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ; Script generated by the Inno Setup Script Wizard.
 | |
| ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
 | |
| 
 | |
| #if GetEnv("INNO") != ""
 | |
|     #define WXW_DIR GetEnv("INNO")
 | |
| #else
 | |
|     #define WXW_DIR "..\.."
 | |
| #endif
 | |
| 
 | |
| #if GetEnv("WXW_VER") == "Snapshot"
 | |
|     #define INFOFILE WXW_DIR + "\BuildGit.txt"
 | |
|     #define WX_VERSION "Snapshot"
 | |
| #elif GetEnv("WXW_VER") != ""
 | |
|     #define INFOFILE WXW_DIR + "\docs\msw\install.txt"
 | |
|     #define WX_VERSION GetEnv("WXW_VER")
 | |
| #else
 | |
|     #error "WXW_VER environment variable must be defined."
 | |
| #endif
 | |
| 
 | |
| #define SETUPFILENAME  "wxMSW-" + GetEnv("WXW_VER") + "-Setup"
 | |
| 
 | |
| 
 | |
| 
 | |
| [Setup]
 | |
| AppName=wxWidgets
 | |
| AppVerName=wxWidgets {#WX_VERSION}
 | |
| AppPublisher=wxWidgets
 | |
| AppPublisherURL=https://www.wxwidgets.org
 | |
| AppSupportURL=https://www.wxwidgets.org
 | |
| AppUpdatesURL=https://www.wxwidgets.org
 | |
| DefaultDirName={sd}\wxWidgets-{#WX_VERSION}
 | |
| DefaultGroupName=wxWidgets {#WX_VERSION}
 | |
| UsePreviousAppDir=no
 | |
| DisableProgramGroupPage=yes
 | |
| LicenseFile={#WXW_DIR}\docs\licence.txt
 | |
| InfoBeforeFile={#WXW_DIR}\docs\readme.txt
 | |
| InfoAfterFile={#INFOFILE}
 | |
| OutputDir={#WXW_DIR}\..
 | |
| OutputBaseFilename={#SETUPFILENAME}
 | |
| PrivilegesRequired=none
 | |
| SetupIconFile={#WXW_DIR}\art\wxwin.ico
 | |
| Compression=lzma
 | |
| SolidCompression=yes
 | |
| 
 | |
| [Files]
 | |
| ; source files
 | |
| Source: "{#WXW_DIR}\*"; DestDir: "{app}"; Excludes: "cocoa,dfb,gtk,gtk1,motif,osx,wxWindows.xcod*,x11,distrib"; Flags: ignoreversion recursesubdirs createallsubdirs
 | |
| 
 | |
| [INI]
 | |
| Filename: "{app}\wx.url"; Section: "InternetShortcut"; Key: "URL"; String: "https://www.wxwidgets.org"
 | |
| 
 | |
| [Icons]
 | |
| Name: "{group}\{cm:ProgramOnTheWeb,wxWidgets}"; Filename: "{app}\wx.url"
 | |
| Name: {group}\wxWidgets Manual; Filename: {app}\docs\htmlhelp\wx.chm; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
 | |
| Name: {group}\Changes; Filename: {app}\docs\changes.txt; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
 | |
| Name: {group}\Readme; Filename: {app}\docs\readme.txt; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
 | |
| Name: {group}\Compiling wxWidgets; Filename: {app}\docs\msw\install.txt; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
 | |
| Name: "{group}\Uninstall wxWidgets {#WX_VERSION}"; Filename: "{uninstallexe}"
 | |
| 
 | |
| 
 | |
| [UninstallDelete]
 | |
| Type: files; Name: "{app}\wx.url"
 |