Skip to content

Commit

Permalink
Installer|Win32: Added an installer component for Tools
Browse files Browse the repository at this point in the history
The command line tools are a mere 100 KB combined, but if someone
wishes not to install them, it is now possible using an installer
option.
  • Loading branch information
skyjake committed Oct 14, 2012
1 parent 62a9fc1 commit 3d18382
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions distrib/win32/setup.iss.template
Expand Up @@ -33,6 +33,7 @@ Name: "Engine\jDoom"; Description: "jDoom (for DOOM/Ultimate DOOM/DOOM II/Final
Name: "Engine\jHeretic"; Description: "jHeretic (for Heretic/Heretic: Shadow of the Serpent Riders)"; Types: full compact
Name: "Engine\jHexen"; Description: "jHexen (for Hexen/Hexen: Death Kings of the Dark Citadel)"; Types: full compact
Name: "Launcher"; Description: "Doomsday Engine Launcher"; Types: full
Name: "Tools"; Description: "Command line tools for data files"; Types: full

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
Expand Down Expand Up @@ -64,9 +65,9 @@ Source: "bin\jHeretic.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Componen
Source: "bin\jHexen.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine\jHexen

; Tools
Source: "bin\md2tool.exe"; DestDir: "{app}\bin"; Flags: ignoreversion;
Source: "bin\texc.exe"; DestDir: "{app}\bin"; Flags: ignoreversion;
Source: "bin\wadtool.exe"; DestDir: "{app}\bin"; Flags: ignoreversion;
Source: "bin\md2tool.exe"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Tools
Source: "bin\texc.exe"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Tools
Source: "bin\wadtool.exe"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Tools

; Libraries
Source: "..\win32\vcredist_x86.exe"; DestDir: "{app}\bin"; Flags: ignoreversion deleteafterinstall; Components: Engine
Expand Down

0 comments on commit 3d18382

Please sign in to comment.