2
0
Эх сурвалжийг харах

Move source files unique to a project into a project specific subdir. Only done SetupLdr and ISCmplr so far. Did also fix/clean mixup of ISCmplr and Compil32 messages in the single CompMsgs file. Cannot test compile.bat until later.

Martijn Laan 1 жил өмнө
parent
commit
b0947896df

+ 1 - 1
Projects/Compil32.dpr

@@ -19,7 +19,7 @@ uses
   CmnFunc in 'Src\CmnFunc.pas',
   CmnFunc2 in 'Src\CmnFunc2.pas',
   CompFunc in 'Src\CompFunc.pas',
-  CompMsgs in 'Src\CompMsgs.pas',
+  CompMsgs2 in 'Src\Compil32\CompMsgs2.pas',
   CompInt in 'Src\CompInt.pas',
   CompOptions in 'Src\CompOptions.pas' {OptionsForm},
   CompStartup in 'Src\CompStartup.pas' {StartupForm},

+ 1 - 1
Projects/Compil32.dproj

@@ -84,7 +84,7 @@
         <DCCReference Include="Src\CmnFunc.pas"/>
         <DCCReference Include="Src\CmnFunc2.pas"/>
         <DCCReference Include="Src\CompFunc.pas"/>
-        <DCCReference Include="Src\CompMsgs.pas"/>
+        <DCCReference Include="Src\Compil32\CompMsgs2.pas"/>
         <DCCReference Include="Src\CompInt.pas"/>
         <DCCReference Include="Src\CompOptions.pas">
             <Form>OptionsForm</Form>

+ 8 - 8
Projects/ISCmplr.dpr

@@ -13,20 +13,20 @@ uses
   SafeDLLPath in 'Src\SafeDLLPath.pas',
   SysUtils,
   CompInt in 'Src\CompInt.pas',
-  CompPreprocInt in 'Src\CompPreprocInt.pas',
-  Compile in 'Src\Compile.pas',
-  CompMsgs in 'Src\CompMsgs.pas',
+  CompPreprocInt in 'Src\ISCmplr\CompPreprocInt.pas',
+  Compile in 'Src\ISCmplr\Compile.pas',
+  CompMsgs in 'Src\ISCmplr\CompMsgs.pas',
   Struct in 'Src\Struct.pas',
   ScriptFunc in 'Src\ScriptFunc.pas',
-  ScriptFunc_C in 'Src\ScriptFunc_C.pas',
-  ScriptCompiler in 'Src\ScriptCompiler.pas',
-  ScriptClasses_C in 'Src\ScriptClasses_C.pas',
+  ScriptFunc_C in 'Src\ISCmplr\ScriptFunc_C.pas',
+  ScriptCompiler in 'Src\ISCmplr\ScriptCompiler.pas',
+  ScriptClasses_C in 'Src\ISCmplr\ScriptClasses_C.pas',
   ResUpdate in 'Src\ResUpdate.pas',
-  CompExeUpdate in 'Src\CompExeUpdate.pas',
+  CompExeUpdate in 'Src\ISCmplr\CompExeUpdate.pas',
   Compress in 'Src\Compress.pas',
   CompressZlib in 'Src\CompressZlib.pas',
   bzlib in 'Src\bzlib.pas',
-  LZMA in 'Src\LZMA.pas',
+  LZMA in 'Src\ISCmplr\LZMA.pas',
   FileClass in 'Src\FileClass.pas',
   ArcFour in 'Src\ArcFour.pas',
   VerInfo in 'Src\VerInfo.pas',

+ 8 - 8
Projects/ISCmplr.dproj

@@ -80,20 +80,20 @@
         </DelphiCompile>
         <DCCReference Include="Src\SafeDLLPath.pas"/>
         <DCCReference Include="Src\CompInt.pas"/>
-        <DCCReference Include="Src\CompPreprocInt.pas"/>
-        <DCCReference Include="Src\Compile.pas"/>
-        <DCCReference Include="Src\CompMsgs.pas"/>
+        <DCCReference Include="Src\ISCmplr\CompPreprocInt.pas"/>
+        <DCCReference Include="Src\ISCmplr\Compile.pas"/>
+        <DCCReference Include="Src\ISCmplr\CompMsgs.pas"/>
         <DCCReference Include="Src\Struct.pas"/>
         <DCCReference Include="Src\ScriptFunc.pas"/>
-        <DCCReference Include="Src\ScriptFunc_C.pas"/>
-        <DCCReference Include="Src\ScriptCompiler.pas"/>
-        <DCCReference Include="Src\ScriptClasses_C.pas"/>
+        <DCCReference Include="Src\ISCmplr\ScriptFunc_C.pas"/>
+        <DCCReference Include="Src\ISCmplr\ScriptCompiler.pas"/>
+        <DCCReference Include="Src\ISCmplr\ScriptClasses_C.pas"/>
         <DCCReference Include="Src\ResUpdate.pas"/>
-        <DCCReference Include="Src\CompExeUpdate.pas"/>
+        <DCCReference Include="Src\ISCmplr\CompExeUpdate.pas"/>
         <DCCReference Include="Src\Compress.pas"/>
         <DCCReference Include="Src\CompressZlib.pas"/>
         <DCCReference Include="Src\bzlib.pas"/>
-        <DCCReference Include="Src\LZMA.pas"/>
+        <DCCReference Include="Src\ISCmplr\LZMA.pas"/>
         <DCCReference Include="Src\FileClass.pas"/>
         <DCCReference Include="Src\ArcFour.pas"/>
         <DCCReference Include="Src\VerInfo.pas"/>

+ 1 - 1
Projects/ISPP/ISPP.dpr

@@ -14,7 +14,7 @@ uses
   SysUtils,
   Windows,
   Classes,
-  CompPreprocInt in '..\Src\CompPreprocInt.pas',
+  CompPreprocInt in '..\Src\ISCmplr\CompPreprocInt.pas',
   IsppPreprocess in 'IsppPreprocess.pas',
   IsppPreprocessor in 'IsppPreprocessor.pas',
   IsppFuncs in 'IsppFuncs.pas',

+ 1 - 1
Projects/ISPP/ISPP.dproj

@@ -77,7 +77,7 @@
         <DelphiCompile Include="$(MainSource)">
             <MainSource>MainSource</MainSource>
         </DelphiCompile>
-        <DCCReference Include="..\Src\CompPreprocInt.pas"/>
+        <DCCReference Include="..\Src\ISCmplr\CompPreprocInt.pas"/>
         <DCCReference Include="IsppPreprocess.pas"/>
         <DCCReference Include="IsppPreprocessor.pas"/>
         <DCCReference Include="IsppFuncs.pas"/>

+ 1 - 1
Projects/SetupLdr.dpr

@@ -16,7 +16,7 @@ uses
   Messages,
   SysUtils,
   Compress in 'Src\Compress.pas',
-  LZMADecompSmall in 'Src\LZMADecompSmall.pas',
+  LZMADecompSmall in 'Src\SetupLdr\LZMADecompSmall.pas',
   SetupEnt in 'Src\SetupEnt.pas',
   PathFunc in '..\Components\PathFunc.pas',
   CmnFunc2 in 'Src\CmnFunc2.pas',

+ 1 - 1
Projects/SetupLdr.dproj

@@ -74,7 +74,7 @@
         <DCCReference Include="Src\SafeDLLPath.pas"/>
         <DCCReference Include="Src\XPTheme.pas"/>
         <DCCReference Include="Src\Compress.pas"/>
-        <DCCReference Include="Src\LZMADecompSmall.pas"/>
+        <DCCReference Include="Src\SetupLdr\LZMADecompSmall.pas"/>
         <DCCReference Include="Src\SetupEnt.pas"/>
         <DCCReference Include="..\Components\PathFunc.pas"/>
         <DCCReference Include="Src\CmnFunc2.pas"/>

+ 1 - 1
Projects/Src/CompForm.pas

@@ -638,7 +638,7 @@ implementation
 uses
   ActiveX, Clipbrd, ShellApi, ShlObj, IniFiles, Registry, Consts, Types, UITypes,
   Math, StrUtils, WideStrUtils,
-  PathFunc, CmnFunc, CmnFunc2, FileClass, CompMsgs, TmSchema, BrowseFunc,
+  PathFunc, CmnFunc, CmnFunc2, FileClass, CompMsgs2, TmSchema, BrowseFunc,
   HtmlHelpFunc, TaskbarProgressFunc,
   {$IFDEF STATICCOMPILER} Compile, {$ENDIF}
   CompOptions, CompStartup, CompWizard, CompSignTools, CompTypes, CompInputQueryCombo, CompMsgBoxDesigner,

+ 1 - 1
Projects/Src/CompFunc.pas

@@ -82,7 +82,7 @@ uses
   ActiveX, ShlObj, ShellApi, CommDlg, SysUtils, IOUtils,
   Messages, DwmApi, Consts,
   CmnFunc2, PathFunc, FileClass, NewUxTheme,
-  CompForm, CompMsgs, CompTypes;
+  CompForm, CompMsgs2, CompTypes;
 
 procedure InitFormFont(Form: TForm);
 var

+ 1 - 1
Projects/Src/CompMsgBoxDesigner.pas

@@ -108,7 +108,7 @@ type
 implementation
 
 uses
-  CmnFunc, CmnFunc2, CompFunc, TaskDialog, CompMsgs;
+  CmnFunc, CmnFunc2, CompFunc, TaskDialog, CompMsgs2;
 
 {$R *.DFM}
 

+ 1 - 1
Projects/Src/CompStartup.pas

@@ -59,7 +59,7 @@ type
 implementation
 
 uses
-  CompMsgs, CmnFunc, CmnFunc2, CompFunc, CompForm, ComCtrls;
+  CompMsgs2, CmnFunc, CmnFunc2, CompFunc, CompForm, ComCtrls;
 
 {$R *.DFM}
 

+ 1 - 1
Projects/Src/CompWizard.pas

@@ -188,7 +188,7 @@ implementation
 uses
   SysUtils, ShlObj, ActiveX, UITypes, FileClass,
   PathFunc, CmnFunc, CmnFunc2, CompFunc, BrowseFunc,
-  CompMsgs, CompWizardFile;
+  CompMsgs2, CompWizardFile;
 
 type
   TConstant = record

+ 1 - 1
Projects/Src/CompWizardFile.pas

@@ -60,7 +60,7 @@ type
 implementation
 
 uses
-  CompMsgs, CmnFunc, CmnFunc2, CompFunc;
+  CompMsgs2, CmnFunc, CmnFunc2, CompFunc;
 
 {$R *.DFM}
 

+ 1 - 1
Projects/Src/CompWizardFilesHelper.pas

@@ -49,7 +49,7 @@ implementation
 uses
   SysUtils, UITypes,
   CmnFunc, CmnFunc2, BrowseFunc, PathFunc,
-  CompMsgs, CompWizardFile;
+  CompMsgs2, CompWizardFile;
 
 constructor TWizardFormFilesHelper.Create(const Form: TForm;
   const NotCreateAppDirCheck: TCheckBox; const FilesListBox: TDropListBox;

+ 1 - 1
Projects/Src/CompWizardRegistryHelper.pas

@@ -47,7 +47,7 @@ implementation
 uses
   Windows, Classes, SysUtils, StrUtils, TypInfo, Graphics, UITypes,
   ComCtrls,
-  CompForm, CompFunc, CompMsgs, BrowseFunc, CmnFunc2, HtmlHelpFunc;
+  CompForm, CompFunc, CompMsgs2, BrowseFunc, CmnFunc2, HtmlHelpFunc;
 
 { TWizardFormRegistryHelper }
 

+ 115 - 0
Projects/Src/Compil32/CompMsgs2.pas

@@ -0,0 +1,115 @@
+unit CompMsgs2;
+
+{
+  Inno Setup
+  Copyright (C) 1997-2024 Jordan Russell
+  Portions by Martijn Laan
+  For conditions of distribution and use, see LICENSE.TXT.
+
+  Compiler IDE Messages
+
+  Some but not all language-specific text used by the Compiler IDE is in here.
+}
+
+interface
+
+const
+  SNewLine = #13#10;  { line break }
+  SNewLine2 = #13#10#13#10;  { double line break }
+
+  { Compiler-specific messages }
+  SCompilerCommandLineHelp3 = 'Command line usage:' + SNewLine +
+    SNewLine +
+    'compil32 /cc <script file>' + SNewLine +
+    'compil32 /wizard <wizard name> <script file>' + SNewLine +
+    SNewLine +
+    'Examples:' + SNewLine +
+    'compil32 /cc c:\isetup\sample32\sample1.iss' + SNewLine +
+    'compil32 /cc "C:\Inno Setup\Sample32\My script.iss"' + SNewLine +
+    'compil32 /wizard "My Script Wizard" c:\temp.iss';
+
+  { Compiler form labels }
+  SCompilerFormCaption = 'Inno Setup Compiler';
+  SCompilerScriptFileLabel = 'Script &File:';
+  SCompilerStatusLabel = 'Status &Messages:';
+  SCompilerScriptBrowseButton = '&Browse...';
+  SCompilerStartButton = '&Start';
+  SCompilerExitButton = 'E&xit';
+  SCompilerOpenFilter = 'Inno Setup Script files (*.iss)|*.iss|All files|*.*';
+  SCompilerExampleScripts = 'Example scripts...';
+  SCompilerMoreFiles = 'More files...';
+
+  { Compiler Script Wizard }
+  SWizardDefaultName = 'Inno Setup Script Wizard';
+  SWizardWelcome = 'Welcome';
+  SWizardAppInfo = 'Application Information';
+  SWizardAppInfo2 = 'Please specify some basic information about your application.';
+  SWizardAppDir = 'Application Folder';
+  SWizardAppDir2 = 'Please specify folder information about your application.';
+  SWizardAppFiles = 'Application Files';
+  SWizardAppFiles2 = 'Please specify the files that are part of your application.';
+  SWizardAppFiles3 = 'Please specify the source folder.';
+  SWizardAppFilesSubDirsMessage = 'Should files in subfolders of "%s" also be included?';
+  SWizardAppExeFilter = 'Application files (*.exe)|*.exe|All files|*.*';
+  SWizardAppExeDefaultExt = 'exe';
+  SWizardAppAssoc = 'Application File Association';
+  SWizardAppAssoc2 = 'Please specify which file association should be created for your application.';
+  SWizardAppIcons = 'Application Shortcuts';
+  SWizardAppIcons2 = 'Please specify which shortcuts should be created for your application.';
+  SWizardAppDocs = 'Application Documentation';
+  SWizardAppDocs2 = 'Please specify which documentation files should be shown by Setup during installation.';
+  SWizardAppDocsFilter = 'Documentation files (*.rtf,*.txt)|*.rtf;*.txt|All files|*.*';
+  SWizardAppDocsDefaultExt = 'rtf';
+  SWizardAppRegFilter = 'Registry files (*.reg)|*.reg|All files|*.*';
+  SWizardAppRegDefaultExt = 'reg';
+  SWizardPrivilegesRequired = 'Setup Install Mode';
+  SWizardPrivilegesRequired2 = 'Please specify in which install mode Setup should run.';
+  SWizardAppRegistry = 'Application Registry Keys And Values';
+  SWizardAppRegistry2 = 'Please specify the registry keys and values that are part of your application.';
+  SWizardLanguages = 'Setup Languages';
+  SWizardLanguages2 = 'Please specify which Setup languages should be included.';
+  SWizardCompiler = 'Compiler Settings';
+  SWizardCompiler2 = 'Please specify some basic compiler settings.';
+  SWizardCompilerSetupIconFileFilter = 'Icon files (*.ico)|*.ico|All files|*.*';
+  SWizardCompilerSetupIconFileDefaultExt = 'ico';
+  SWizardCompilerOutputDir = 'Please specify the folder.';
+  SWizardISPP = 'Inno Setup Preprocessor';
+  SWizardISPP2 = 'Please specify whether Inno Setup Preprocessor should be used.';
+  SWizardISPPLabel = 'The [name] can use #define compiler directives to simplify your script. Although this is not necessary, it will make it easier to manually change the script later.' + SNewLine2 + 'Do you want the [name] to use #define compiler directives?';
+  SWizardISPPCheck = '&Yes, use #define compiler directives';
+  SWizardFinished = 'Finished';
+
+  SWizardNextButton = '&Next';
+  SWizardFinishButton = '&Finish';
+  SWizardCancelMessage = 'The [name] is not complete. If you quit now, the new script file will not be generated.'#13#13'Exit the [name]?';
+
+  SWizardAllFilesFilter = 'All files|*.*';
+
+  SWizardAppNameError = 'Please specify the application name.';
+  SWizardAppVersionError = 'Please specify the application version.';
+  SWizardAppRootDirError = 'Please specify the application destination base folder.';
+  SWizardAppDirNameError = 'Please specify the application folder name.';
+  SWizardAppExeError = 'Please specify the application main executable file.';
+  SWizardAppGroupNameError = 'Please specify the application Start Menu group name.';
+  SWizardFileDestRootDirError = 'Please specify the destination base folder.';
+  SWizardFileAppDestRootDirError = 'Please specify a destination base folder other than the application folder';
+  SWizardLanguagesSelError = 'Please select at least one language.';
+
+  SWizardScriptHeader = '; Script generated by the [name].' + SNewLine  + '; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!';
+
+  { Status messages }
+  SCompilerStatusStarting = '*** Starting compile.  [%s]';
+  SCompilerStatusFinished = '*** Finished.  [%s, %s elapsed]';
+  SCompilerStatusErrorAborted = '*** Compile aborted.';
+  SCompilerStatusReset = '*** Log size limit reached, list reset.';
+
+  SCompilerNeedCompiledExe = 'Cannot run Setup at this time. Please compile Setup successfully to completion first, with output enabled';
+  SCompilerNeedUninstExe = 'Cannot run Uninstall at this time. Please run Setup successfully to completion first';
+  SCompilerExecuteSetupError2 = 'Error executing "%s":' + SNewLine2 + '%d: %s';  
+
+  { Line parsing }
+  SCompilerIllegalNullChar = 'Illegal null character on line %d';
+
+implementation
+
+end.

+ 0 - 0
Projects/Src/CompExeUpdate.pas → Projects/Src/ISCmplr/CompExeUpdate.pas


+ 1 - 86
Projects/Src/CompMsgs.pas → Projects/Src/ISCmplr/CompMsgs.pas

@@ -17,92 +17,13 @@ interface
 const
   SNewLine = #13#10;  { line break }
   SNewLine2 = #13#10#13#10;  { double line break }
-
-  { Compiler form labels }
-  SCompilerFormCaption = 'Inno Setup Compiler';
-  SCompilerScriptFileLabel = 'Script &File:';
-  SCompilerStatusLabel = 'Status &Messages:';
-  SCompilerScriptBrowseButton = '&Browse...';
-  SCompilerStartButton = '&Start';
-  SCompilerExitButton = 'E&xit';
-  SCompilerOpenFilter = 'Inno Setup Script files (*.iss)|*.iss|All files|*.*';
-  SCompilerExampleScripts = 'Example scripts...';
-  SCompilerMoreFiles = 'More files...';
-
-  { Compiler Script Wizard }
-  SWizardDefaultName = 'Inno Setup Script Wizard';
-  SWizardWelcome = 'Welcome';
-  SWizardAppInfo = 'Application Information';
-  SWizardAppInfo2 = 'Please specify some basic information about your application.';
-  SWizardAppDir = 'Application Folder';
-  SWizardAppDir2 = 'Please specify folder information about your application.';
-  SWizardAppFiles = 'Application Files';
-  SWizardAppFiles2 = 'Please specify the files that are part of your application.';
-  SWizardAppFiles3 = 'Please specify the source folder.';
-  SWizardAppFilesSubDirsMessage = 'Should files in subfolders of "%s" also be included?';
-  SWizardAppExeFilter = 'Application files (*.exe)|*.exe|All files|*.*';
-  SWizardAppExeDefaultExt = 'exe';
-  SWizardAppAssoc = 'Application File Association';
-  SWizardAppAssoc2 = 'Please specify which file association should be created for your application.';
-  SWizardAppIcons = 'Application Shortcuts';
-  SWizardAppIcons2 = 'Please specify which shortcuts should be created for your application.';
-  SWizardAppDocs = 'Application Documentation';
-  SWizardAppDocs2 = 'Please specify which documentation files should be shown by Setup during installation.';
-  SWizardAppDocsFilter = 'Documentation files (*.rtf,*.txt)|*.rtf;*.txt|All files|*.*';
-  SWizardAppDocsDefaultExt = 'rtf';
-  SWizardAppRegFilter = 'Registry files (*.reg)|*.reg|All files|*.*';
-  SWizardAppRegDefaultExt = 'reg';
-  SWizardPrivilegesRequired = 'Setup Install Mode';
-  SWizardPrivilegesRequired2 = 'Please specify in which install mode Setup should run.';
-  SWizardAppRegistry = 'Application Registry Keys And Values';
-  SWizardAppRegistry2 = 'Please specify the registry keys and values that are part of your application.';
-  SWizardLanguages = 'Setup Languages';
-  SWizardLanguages2 = 'Please specify which Setup languages should be included.';
-  SWizardCompiler = 'Compiler Settings';
-  SWizardCompiler2 = 'Please specify some basic compiler settings.';
-  SWizardCompilerSetupIconFileFilter = 'Icon files (*.ico)|*.ico|All files|*.*';
-  SWizardCompilerSetupIconFileDefaultExt = 'ico';
-  SWizardCompilerOutputDir = 'Please specify the folder.';
-  SWizardISPP = 'Inno Setup Preprocessor';
-  SWizardISPP2 = 'Please specify whether Inno Setup Preprocessor should be used.';
-  SWizardISPPLabel = 'The [name] can use #define compiler directives to simplify your script. Although this is not necessary, it will make it easier to manually change the script later.' + SNewLine2 + 'Do you want the [name] to use #define compiler directives?';
-  SWizardISPPCheck = '&Yes, use #define compiler directives';
-  SWizardFinished = 'Finished';
-
-  SWizardNextButton = '&Next';
-  SWizardFinishButton = '&Finish';
-  SWizardCancelMessage = 'The [name] is not complete. If you quit now, the new script file will not be generated.'#13#13'Exit the [name]?';
-
-  SWizardAllFilesFilter = 'All files|*.*';
-
-  SWizardAppNameError = 'Please specify the application name.';
-  SWizardAppVersionError = 'Please specify the application version.';
-  SWizardAppRootDirError = 'Please specify the application destination base folder.';
-  SWizardAppDirNameError = 'Please specify the application folder name.';
-  SWizardAppExeError = 'Please specify the application main executable file.';
-  SWizardAppGroupNameError = 'Please specify the application Start Menu group name.';
-  SWizardFileDestRootDirError = 'Please specify the destination base folder.';
-  SWizardFileAppDestRootDirError = 'Please specify a destination base folder other than the application folder';
-  SWizardLanguagesSelError = 'Please select at least one language.';
-
-  SWizardScriptHeader = '; Script generated by the [name].' + SNewLine  + '; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!';
-
+  
   { Compiler-specific messages }
   SCompilerVersion = 'version %s';
 
   SCompilerNotOnWin32s = 'The 32-bit compiler will not run on Win32s.';
-  SCompilerCommandLineHelp3 = 'Command line usage:' + SNewLine +
-    SNewLine +
-    'compil32 /cc <script file>' + SNewLine +
-    'compil32 /wizard <wizard name> <script file>' + SNewLine +
-    SNewLine +
-    'Examples:' + SNewLine +
-    'compil32 /cc c:\isetup\sample32\sample1.iss' + SNewLine +
-    'compil32 /cc "C:\Inno Setup\Sample32\My script.iss"' + SNewLine +
-    'compil32 /wizard "My Script Wizard" c:\temp.iss';
 
   { Status messages }
-  SCompilerStatusStarting = '*** Starting compile.  [%s]';
   SCompilerStatusPreprocessing = 'Preprocessing';
   SCompilerStatusPreprocessorStatus = '   %s';
   SBuiltinPreprocessStatusIncludingFile = 'Including file: %s';
@@ -138,10 +59,7 @@ const
   SCompilerStatusUpdatingManifest = '   Updating manifest (%s)';
   SCompilerStatusUpdatingIcons = '   Updating icons (%s)';
   SCompilerStatusCreatingDisk = '   Creating disk %d';
-  SCompilerStatusFinished = '*** Finished.  [%s, %s elapsed]';
   SCompilerStatusError = 'ERROR:';
-  SCompilerStatusErrorAborted = '*** Compile aborted.';
-  SCompilerStatusReset = '*** Log size limit reached, list reset.';
   SCompilerStatusWarning = 'Warning: ';
   SCompilerStatusSigningSetup = '   Signing Setup program executable';
   SCompilerStatusSigningSourceFile = '   Signing: %s';
@@ -156,9 +74,6 @@ const
     SNewLine +
     'Would you like to test the installation now?';
   SCompilerSuccessfulTitle = 'Compile Successful';
-  SCompilerNeedCompiledExe = 'Cannot run Setup at this time. Please compile Setup successfully to completion first, with output enabled';
-  SCompilerNeedUninstExe = 'Cannot run Uninstall at this time. Please run Setup successfully to completion first';
-  SCompilerExecuteSetupError2 = 'Error executing "%s":' + SNewLine2 + '%d: %s';
 
   SCompilerAborted = 'Compile aborted. Please correct the problem and try again.';
 

+ 0 - 0
Projects/Src/CompPreprocInt.pas → Projects/Src/ISCmplr/CompPreprocInt.pas


+ 0 - 0
Projects/Src/Compile.pas → Projects/Src/ISCmplr/Compile.pas


+ 0 - 0
Projects/Src/LZMA.pas → Projects/Src/ISCmplr/LZMA.pas


+ 0 - 0
Projects/Src/ScriptClasses_C.pas → Projects/Src/ISCmplr/ScriptClasses_C.pas


+ 0 - 0
Projects/Src/ScriptCompiler.pas → Projects/Src/ISCmplr/ScriptCompiler.pas


+ 0 - 0
Projects/Src/ScriptFunc_C.pas → Projects/Src/ISCmplr/ScriptFunc_C.pas


+ 0 - 0
Projects/Src/LZMADecompSmall.pas → Projects/Src/SetupLdr/LZMADecompSmall.pas