| 23 | cycrow | 1 | ; X-Universe Plugin Manager
 | 
        
           |  |  | 2 | ;#define VERSION "1.42"
 | 
        
           |  |  | 3 | #include "pluginmanager_base.iss"
 | 
        
           |  |  | 4 |   | 
        
           |  |  | 5 | [Setup]
 | 
        
           |  |  | 6 | DirExistsWarning=yes
 | 
        
           |  |  | 7 | OutputBaseFilename=XPluginManager_Installer
 | 
        
           |  |  | 8 |   | 
        
           |  |  | 9 | [Files]
 | 
        
           |  |  | 10 | ; Library (dll) files
 | 
        
           |  |  | 11 | Source: "..\release\spk.dll"; Components: main\pluginman; DestDir: {sys}
 | 
        
           |  |  | 12 | Source: "unrar.dll"; Components: main\pluginman; DestDir: {sys}
 | 
        
           |  |  | 13 | Source: "..\fmodex.dll"; Components: main\pluginman; DestDir: {app}
 | 
        
           |  |  | 14 | Source: "..\x3.ico"; Components: main\pluginman; DestDir: {app}
 | 
        
           |  |  | 15 | ; Redist
 | 
        
           |  |  | 16 | Source: "software\vcredist_x86.exe"; Tasks: redist; DestDir: "{app}"; Flags: deleteafterinstall
 | 
        
           |  |  | 17 |   | 
        
           |  |  | 18 | [Run]
 | 
        
           |  |  | 19 | Filename: "{app}\vcredist_x86.exe"; Tasks: redist; StatusMsg: "Installing VC++ Redistributables..."
 | 
        
           |  |  | 20 | Filename: "{app}\changelog.txt"; Components: main\pluginman; Description: "View the Changelog file"; Flags:  postinstall shellexec skipifsilent unchecked
 | 
        
           |  |  | 21 | Filename: "{app}\XPluginManager.exe"; Components: main\pluginman; Description: "Run the Plugin Manager Lite"; Flags:  postinstall nowait skipifsilent; Parameters: --silent
 | 
        
           |  |  | 22 | Filename: "{app}\XPluginManager.exe"; Components: main\pluginman; Description: "Run the Plugin Manager Advanced"; Flags:  postinstall nowait skipifsilent unchecked; Parameters: --advanced --silent
 | 
        
           |  |  | 23 |   | 
        
           |  |  | 24 | [Tasks]
 | 
        
           |  |  | 25 | Name: redist; Description: "{cm:TaskRedist}"
 |