Windows installer: exclude XCF files

This commit is contained in:
Automatic Release Builder
2021-03-02 17:04:03 +00:00
parent 9e7771baea
commit 28b00e7423
2 changed files with 4 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ Source: "{#ThirdPartyDir}\3rdParty.x64\bin\liblzma.dll"; DestDir: "{app}\bin"; C
; Include the base package
#if IncludeData == "TRUE"
Source: "{#FgHarnessPath}\fgdata\*.*"; DestDir: "{app}\data"; Flags: ignoreversion recursesubdirs skipifsourcedoesntexist
Source: "{#FgHarnessPath}\fgdata\*.*"; DestDir: "{app}\data"; Excludes: "{#FGDataExcludes}"; Flags: ignoreversion recursesubdirs skipifsourcedoesntexist
#endif
; 32 bits install

View File

@@ -61,6 +61,9 @@
; useful to the end-user to ship
#define ExcludedBinaries "*smooth.exe,metar.exe"
; Exclude XCF files from FGData to keep the size down
#define FGDataExcludes "*.xcf"
#include "FlightGear-files.iss"
[Setup]