This commit is contained in:
kudzu_cp 2011-08-13 22:20:49 +00:00
parent 57a66f7638
commit dab6df8722
2 changed files with 4 additions and 5 deletions

View file

@ -7,13 +7,11 @@
#if BuildConfiguration == "Devkit"
; devkit releases are not compressed
#pragma warning "Building Devkit release"
#elif BuildConfiguration == "Userkit"
#else
; userkit releases get compressed, and get languages included
#pragma message "Building Userkit release"
#define Compress true
#define IncludeUILanguages true
#else
# error Unsupported configuration
#endif
; Cosmos Registry key
@ -31,17 +29,18 @@ AppSupportURL=http://www.goCosmos.org/
AppUpdatesURL=http://www.goCosmos.org/
AppVersion={#ChangeSetVersion}
DefaultDirName={userappdata}\Cosmos User Kit
;DefaultDirName=m:\Cosmos User Kit -- Only about 2-3 seconds faster. The GAC and other things seem to be the majority of the slowness
DefaultGroupName=Cosmos User Kit
OutputDir=.\Setup2\Output
OutputBaseFilename=CosmosUserKit
#ifdef Compress
Compression=lzma2/ultra64
InternalCompressLevel=ultra64
SolidCompression=true
#else
Compression=none
InternalCompressLevel=none
#endif
SolidCompression=true
SourceDir=..
;Left Image should be 164x314
WizardImageFile=.\setup2\images\cosmos.bmp

View file

@ -9,7 +9,7 @@ begin
Exec(ExpandConstant('{code:VSNET2010_PATH|}\devenv.exe'), '/setup', '', SW_HIDE, ewWaitUntilTerminated, xResultCode);
if xResultCode <> 0 then
begin
RaiseException('An error occurred while unregistering with Visual Studio!');
RaiseException('An error occurred while unregistering Cosmos from Visual Studio!');
end;
finally
EnableFsRedirection(false);