Mark some LttP specific executables as such
This commit is contained in:
parent
1d6aabeea6
commit
2cb6ec2a70
|
@ -1,6 +1,6 @@
|
||||||
#define sourcepath "build\exe.win-amd64-3.8\"
|
#define sourcepath "build\exe.win-amd64-3.8\"
|
||||||
#define MyAppName "Archipelago"
|
#define MyAppName "Archipelago"
|
||||||
#define MyAppExeName "ArchipelagoClient.exe"
|
#define MyAppExeName "ArchipelagoLttPClient.exe"
|
||||||
#define MyAppIcon "icon.ico"
|
#define MyAppIcon "icon.ico"
|
||||||
|
|
||||||
[Setup]
|
[Setup]
|
||||||
|
@ -52,7 +52,7 @@ Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks:
|
||||||
|
|
||||||
[Run]
|
[Run]
|
||||||
Filename: "{tmp}\vc_redist.x64.exe"; Parameters: "/passive /norestart"; Check: IsVCRedist64BitNeeded; StatusMsg: "Installing VC++ redistributable..."
|
Filename: "{tmp}\vc_redist.x64.exe"; Parameters: "/passive /norestart"; Check: IsVCRedist64BitNeeded; StatusMsg: "Installing VC++ redistributable..."
|
||||||
Filename: "{app}\ArchipelagoCreator"; Parameters: "update_sprites"; StatusMsg: "Updating Sprite Library..."
|
Filename: "{app}\ArchipelagoLttPCreator"; Parameters: "update_sprites"; StatusMsg: "Updating Sprite Library..."
|
||||||
|
|
||||||
[UninstallDelete]
|
[UninstallDelete]
|
||||||
Type: dirifempty; Name: "{app}"
|
Type: dirifempty; Name: "{app}"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#define sourcepath "build\exe.win-amd64-3.9\"
|
#define sourcepath "build\exe.win-amd64-3.9\"
|
||||||
#define MyAppName "Archipelago"
|
#define MyAppName "Archipelago"
|
||||||
#define MyAppExeName "ArchipelagoClient.exe"
|
#define MyAppExeName "ArchipelagoLttPClient.exe"
|
||||||
#define MyAppIcon "icon.ico"
|
#define MyAppIcon "icon.ico"
|
||||||
|
|
||||||
[Setup]
|
[Setup]
|
||||||
|
@ -52,7 +52,7 @@ Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks:
|
||||||
|
|
||||||
[Run]
|
[Run]
|
||||||
Filename: "{tmp}\vc_redist.x64.exe"; Parameters: "/passive /norestart"; Check: IsVCRedist64BitNeeded; StatusMsg: "Installing VC++ redistributable..."
|
Filename: "{tmp}\vc_redist.x64.exe"; Parameters: "/passive /norestart"; Check: IsVCRedist64BitNeeded; StatusMsg: "Installing VC++ redistributable..."
|
||||||
Filename: "{app}\ArchipelagoCreator"; Parameters: "update_sprites"; StatusMsg: "Updating Sprite Library..."
|
Filename: "{app}\ArchipelagoLttPCreator"; Parameters: "update_sprites"; StatusMsg: "Updating Sprite Library..."
|
||||||
|
|
||||||
[UninstallDelete]
|
[UninstallDelete]
|
||||||
Type: dirifempty; Name: "{app}"
|
Type: dirifempty; Name: "{app}"
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -54,10 +54,10 @@ def manifest_creation():
|
||||||
print("Created Manifest")
|
print("Created Manifest")
|
||||||
|
|
||||||
|
|
||||||
scripts = {"MultiClient.py": "ArchipelagoClient",
|
scripts = {"MultiClient.py": "ArchipelagoLttPClient",
|
||||||
"MultiMystery.py": "ArchipelagoMultiMystery",
|
"MultiMystery.py": "ArchipelagoMultiMystery",
|
||||||
"MultiServer.py": "ArchipelagoServer",
|
"MultiServer.py": "ArchipelagoServer",
|
||||||
"gui.py": "ArchipelagoCreator",
|
"gui.py": "ArchipelagoLttPCreator",
|
||||||
"Mystery.py": "ArchipelagoMystery",
|
"Mystery.py": "ArchipelagoMystery",
|
||||||
"Adjuster.py": "ArchipelagoLttPAdjuster"}
|
"Adjuster.py": "ArchipelagoLttPAdjuster"}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue