mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 14:59:15 +02:00
Import and Export of package compiler options
git-svn-id: trunk@4626 -
This commit is contained in:
parent
5d83374da5
commit
86428e4837
@ -3,6 +3,15 @@
|
|||||||
<Package>
|
<Package>
|
||||||
<Name Value="GTKOpenGL"/>
|
<Name Value="GTKOpenGL"/>
|
||||||
<Author Value="Mattias Gaertner, Satan"/>
|
<Author Value="Mattias Gaertner, Satan"/>
|
||||||
|
<CompilerOptions>
|
||||||
|
<SearchPaths>
|
||||||
|
<UnitOutputDirectory Value="lib"/>
|
||||||
|
<LCLWidgetType Value="gtk"/>
|
||||||
|
</SearchPaths>
|
||||||
|
<Other>
|
||||||
|
<CompilerPath Value="$(CompPath)"/>
|
||||||
|
</Other>
|
||||||
|
</CompilerOptions>
|
||||||
<Description Value="OpenGL for LCL - components: TGtkGlAreaControl
|
<Description Value="OpenGL for LCL - components: TGtkGlAreaControl
|
||||||
Please make sure that you link to the right libgtkgl. If you accidently link to libgtkgl-2.0 then you will mix gtk1 and gtk2 libraries, which will result in strange errors, up to freezing your windowmanager."/>
|
Please make sure that you link to the right libgtkgl. If you accidently link to libgtkgl-2.0 then you will mix gtk1 and gtk2 libraries, which will result in strange errors, up to freezing your windowmanager."/>
|
||||||
<License Value="LGPL-2"/>
|
<License Value="LGPL-2"/>
|
||||||
@ -50,13 +59,4 @@ Please make sure that you link to the right libgtkgl. If you accidently link to
|
|||||||
<UseExcludeFileFilter Value="True"/>
|
<UseExcludeFileFilter Value="True"/>
|
||||||
</PublishOptions>
|
</PublishOptions>
|
||||||
</Package>
|
</Package>
|
||||||
<CompilerOptions>
|
|
||||||
<SearchPaths>
|
|
||||||
<UnitOutputDirectory Value="lib/"/>
|
|
||||||
<LCLWidgetType Value="gtk"/>
|
|
||||||
</SearchPaths>
|
|
||||||
<Other>
|
|
||||||
<CompilerPath Value="$(CompPath)"/>
|
|
||||||
</Other>
|
|
||||||
</CompilerOptions>
|
|
||||||
</CONFIG>
|
</CONFIG>
|
||||||
|
@ -83,6 +83,7 @@ function DoImportComilerOptions(CompOptsDialog: TfrmCompilerOptions;
|
|||||||
CompilerOpts: TBaseCompilerOptions; const Filename: string): TModalResult;
|
CompilerOpts: TBaseCompilerOptions; const Filename: string): TModalResult;
|
||||||
function DoExportComilerOptions(CompOptsDialog: TfrmCompilerOptions;
|
function DoExportComilerOptions(CompOptsDialog: TfrmCompilerOptions;
|
||||||
CompilerOpts: TBaseCompilerOptions; const Filename: string): TModalResult;
|
CompilerOpts: TBaseCompilerOptions; const Filename: string): TModalResult;
|
||||||
|
function GetXMLPathForCompilerOptionsInFile(const Filename: string): string;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
@ -106,6 +107,7 @@ function DoImportComilerOptions(CompOptsDialog: TfrmCompilerOptions;
|
|||||||
var
|
var
|
||||||
XMLConfig: TXMLConfig;
|
XMLConfig: TXMLConfig;
|
||||||
FreeCompilerOpts: Boolean;
|
FreeCompilerOpts: Boolean;
|
||||||
|
Path: String;
|
||||||
begin
|
begin
|
||||||
Result:=mrCancel;
|
Result:=mrCancel;
|
||||||
try
|
try
|
||||||
@ -123,7 +125,8 @@ begin
|
|||||||
CompilerOpts:=TBaseCompilerOptions.Create(nil);
|
CompilerOpts:=TBaseCompilerOptions.Create(nil);
|
||||||
FreeCompilerOpts:=true;
|
FreeCompilerOpts:=true;
|
||||||
end;
|
end;
|
||||||
CompilerOpts.LoadFromXMLConfig(XMLConfig,'CompilerOptions/');
|
Path:=GetXMLPathForCompilerOptionsInFile(Filename);
|
||||||
|
CompilerOpts.LoadFromXMLConfig(XMLConfig,Path+'CompilerOptions/');
|
||||||
if CompOptsDialog<>nil then
|
if CompOptsDialog<>nil then
|
||||||
CompOptsDialog.GetCompilerOptions(CompilerOpts);
|
CompOptsDialog.GetCompilerOptions(CompilerOpts);
|
||||||
finally
|
finally
|
||||||
@ -138,6 +141,7 @@ function DoExportComilerOptions(CompOptsDialog: TfrmCompilerOptions;
|
|||||||
var
|
var
|
||||||
XMLConfig: TXMLConfig;
|
XMLConfig: TXMLConfig;
|
||||||
FreeCompilerOpts: Boolean;
|
FreeCompilerOpts: Boolean;
|
||||||
|
Path: String;
|
||||||
begin
|
begin
|
||||||
FreeCompilerOpts:=false;
|
FreeCompilerOpts:=false;
|
||||||
if (CompOptsDialog<>nil) then begin
|
if (CompOptsDialog<>nil) then begin
|
||||||
@ -150,7 +154,8 @@ begin
|
|||||||
try
|
try
|
||||||
XMLConfig:=TXMLConfig.Create(Filename);
|
XMLConfig:=TXMLConfig.Create(Filename);
|
||||||
try
|
try
|
||||||
CompilerOpts.SaveToXMLConfig(XMLConfig,'CompilerOptions/');
|
Path:=GetXMLPathForCompilerOptionsInFile(Filename);
|
||||||
|
CompilerOpts.SaveToXMLConfig(XMLConfig,Path+'CompilerOptions/');
|
||||||
XMLConfig.Flush;
|
XMLConfig.Flush;
|
||||||
finally
|
finally
|
||||||
XMLConfig.Free;
|
XMLConfig.Free;
|
||||||
@ -168,6 +173,33 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function ReadIntFromXMLConfig(const Filename, Path: string;
|
||||||
|
DefaultValue, ValueForReadError: integer): integer;
|
||||||
|
var
|
||||||
|
XMLConfig: TXMLConfig;
|
||||||
|
begin
|
||||||
|
Result:=ValueForReadError;
|
||||||
|
if FileExists(Filename) then
|
||||||
|
try
|
||||||
|
XMLConfig:=TXMLConfig.Create(Filename);
|
||||||
|
Result:=XMLConfig.GetValue(Path,DefaultValue);
|
||||||
|
except
|
||||||
|
Result:=ValueForReadError;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function GetXMLPathForCompilerOptionsInFile(const Filename: string): string;
|
||||||
|
var
|
||||||
|
FileVersion: Integer;
|
||||||
|
begin
|
||||||
|
Result:='';
|
||||||
|
if CompareFileExt(Filename,'.lpk',false)=0 then begin
|
||||||
|
FileVersion:=ReadIntFromXMLConfig(Filename,'Package/Version',0,2);
|
||||||
|
if FileVersion>=2 then
|
||||||
|
Result:='Package/';
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
{ TImExportCompOptsDlg }
|
{ TImExportCompOptsDlg }
|
||||||
|
|
||||||
procedure TImExportCompOptsDlg.ImExportCompOptsDlgCREATE(Sender: TObject);
|
procedure TImExportCompOptsDlg.ImExportCompOptsDlgCREATE(Sender: TObject);
|
||||||
|
39
ide/main.pp
39
ide/main.pp
@ -500,6 +500,7 @@ type
|
|||||||
function DoOpenProjectFile(AFileName: string; Flags: TOpenFlags): TModalResult;
|
function DoOpenProjectFile(AFileName: string; Flags: TOpenFlags): TModalResult;
|
||||||
function DoPublishProject(Flags: TSaveFlags;
|
function DoPublishProject(Flags: TSaveFlags;
|
||||||
ShowDialog: boolean): TModalResult;
|
ShowDialog: boolean): TModalResult;
|
||||||
|
function DoImExportCompilerOptions(Sender: TObject): TModalResult; override;
|
||||||
function DoShowProjectInspector: TModalResult; override;
|
function DoShowProjectInspector: TModalResult; override;
|
||||||
function DoAddActiveUnitToProject: TModalResult;
|
function DoAddActiveUnitToProject: TModalResult;
|
||||||
function DoRemoveFromProjectDialog: TModalResult;
|
function DoRemoveFromProjectDialog: TModalResult;
|
||||||
@ -5329,6 +5330,27 @@ begin
|
|||||||
GetProjPublishDir);
|
GetProjPublishDir);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TMainIDE.DoImExportCompilerOptions(Sender: TObject): TModalResult;
|
||||||
|
var
|
||||||
|
CompOptsDialog: TfrmCompilerOptions;
|
||||||
|
ImExportResult: TImExportCompOptsResult;
|
||||||
|
Filename: string;
|
||||||
|
begin
|
||||||
|
Result:=mrOk;
|
||||||
|
if not (Sender is TfrmCompilerOptions) then
|
||||||
|
RaiseException('TMainIDE.OnCompilerOptionsImExport');
|
||||||
|
CompOptsDialog:=TfrmCompilerOptions(Sender);
|
||||||
|
ImExportResult:=ShowImExportCompilerOptionsDialog(
|
||||||
|
CompOptsDialog.CompilerOpts,Filename);
|
||||||
|
if (ImExportResult=iecorCancel) or (Filename='') then exit;
|
||||||
|
if ImExportResult=iecorImport then
|
||||||
|
Result:=DoImportComilerOptions(CompOptsDialog,CompOptsDialog.CompilerOpts,
|
||||||
|
Filename)
|
||||||
|
else if ImExportResult=iecorExport then
|
||||||
|
Result:=DoExportComilerOptions(CompOptsDialog,CompOptsDialog.CompilerOpts,
|
||||||
|
Filename);
|
||||||
|
end;
|
||||||
|
|
||||||
function TMainIDE.DoShowProjectInspector: TModalResult;
|
function TMainIDE.DoShowProjectInspector: TModalResult;
|
||||||
begin
|
begin
|
||||||
if ProjInspector=nil then begin
|
if ProjInspector=nil then begin
|
||||||
@ -9215,20 +9237,8 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMainIDE.OnCompilerOptionsImExport(Sender: TObject);
|
procedure TMainIDE.OnCompilerOptionsImExport(Sender: TObject);
|
||||||
var
|
|
||||||
CompOptsDialog: TfrmCompilerOptions;
|
|
||||||
ImExportResult: TImExportCompOptsResult;
|
|
||||||
Filename: string;
|
|
||||||
begin
|
begin
|
||||||
if not (Sender is TfrmCompilerOptions) then exit;
|
DoImExportCompilerOptions(Sender);
|
||||||
CompOptsDialog:=TfrmCompilerOptions(Sender);
|
|
||||||
ImExportResult:=ShowImExportCompilerOptionsDialog(
|
|
||||||
CompOptsDialog.CompilerOpts,Filename);
|
|
||||||
if (ImExportResult=iecorCancel) or (Filename='') then exit;
|
|
||||||
if ImExportResult=iecorImport then
|
|
||||||
DoImportComilerOptions(CompOptsDialog,CompOptsDialog.CompilerOpts,Filename)
|
|
||||||
else if ImExportResult=iecorExport then
|
|
||||||
DoExportComilerOptions(CompOptsDialog,CompOptsDialog.CompilerOpts,Filename);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMainIDE.ProjInspectorOpen(Sender: TObject);
|
procedure TMainIDE.ProjInspectorOpen(Sender: TObject);
|
||||||
@ -9782,6 +9792,9 @@ end.
|
|||||||
|
|
||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.647 2003/09/15 15:03:05 mattias
|
||||||
|
Import and Export of package compiler options
|
||||||
|
|
||||||
Revision 1.646 2003/09/10 12:13:48 mattias
|
Revision 1.646 2003/09/10 12:13:48 mattias
|
||||||
implemented Import and Export of compiler options
|
implemented Import and Export of compiler options
|
||||||
|
|
||||||
|
@ -409,6 +409,7 @@ type
|
|||||||
const AFilename: string): TModalResult; virtual;
|
const AFilename: string): TModalResult; virtual;
|
||||||
|
|
||||||
function DoShowProjectInspector: TModalResult; virtual; abstract;
|
function DoShowProjectInspector: TModalResult; virtual; abstract;
|
||||||
|
function DoImExportCompilerOptions(Sender: TObject): TModalResult; virtual; abstract;
|
||||||
|
|
||||||
function PrepareForCompile: TModalResult; virtual; abstract;
|
function PrepareForCompile: TModalResult; virtual; abstract;
|
||||||
function DoBuildLazarus(Flags: TBuildLazarusFlags): TModalResult; virtual; abstract;
|
function DoBuildLazarus(Flags: TBuildLazarusFlags): TModalResult; virtual; abstract;
|
||||||
|
@ -684,7 +684,7 @@ type
|
|||||||
|
|
||||||
|
|
||||||
const
|
const
|
||||||
LazPkgXMLFileVersion = 1;
|
LazPkgXMLFileVersion = 2;
|
||||||
|
|
||||||
PkgFileTypeNames: array[TPkgFileType] of string = (
|
PkgFileTypeNames: array[TPkgFileType] of string = (
|
||||||
'pftUnit', 'pftVirtualUnit', 'pftLFM', 'pftLRS', 'pftInclude', 'pftText',
|
'pftUnit', 'pftVirtualUnit', 'pftLFM', 'pftLRS', 'pftInclude', 'pftText',
|
||||||
@ -2068,7 +2068,6 @@ var
|
|||||||
begin
|
begin
|
||||||
Flags:=Flags+[lpfLoading];
|
Flags:=Flags+[lpfLoading];
|
||||||
FileVersion:=XMLConfig.GetValue(Path+'Version',0);
|
FileVersion:=XMLConfig.GetValue(Path+'Version',0);
|
||||||
if FileVersion=1 then ;
|
|
||||||
OldFilename:=Filename;
|
OldFilename:=Filename;
|
||||||
BeginUpdate;
|
BeginUpdate;
|
||||||
Clear;
|
Clear;
|
||||||
@ -2076,10 +2075,11 @@ begin
|
|||||||
LockModified;
|
LockModified;
|
||||||
PathDelimChanged:=XMLConfig.GetValue(Path+'PathDelim/Value','/')<>'/';
|
PathDelimChanged:=XMLConfig.GetValue(Path+'PathDelim/Value','/')<>'/';
|
||||||
Name:=XMLConfig.GetValue(Path+'Name/Value','');
|
Name:=XMLConfig.GetValue(Path+'Name/Value','');
|
||||||
|
FPackageType:=LazPackageTypeIdentToType(XMLConfig.GetValue(Path+'Type/Value',
|
||||||
|
LazPackageTypeIdents[lptRunTime]));
|
||||||
FAuthor:=XMLConfig.GetValue(Path+'Author/Value','');
|
FAuthor:=XMLConfig.GetValue(Path+'Author/Value','');
|
||||||
FAutoUpdate:=NameToAutoUpdatePolicy(
|
FAutoUpdate:=NameToAutoUpdatePolicy(
|
||||||
XMLConfig.GetValue(Path+'AutoUpdate/Value',''));
|
XMLConfig.GetValue(Path+'AutoUpdate/Value',''));
|
||||||
FCompilerOptions.LoadFromXMLConfig(XMLConfig,Path+'CompilerOptions/');
|
|
||||||
FDescription:=XMLConfig.GetValue(Path+'Description/Value','');
|
FDescription:=XMLConfig.GetValue(Path+'Description/Value','');
|
||||||
FLicense:=XMLConfig.GetValue(Path+'License/Value','');
|
FLicense:=XMLConfig.GetValue(Path+'License/Value','');
|
||||||
FVersion.LoadFromXMLConfig(XMLConfig,Path+'Version/',FileVersion);
|
FVersion.LoadFromXMLConfig(XMLConfig,Path+'Version/',FileVersion);
|
||||||
@ -2088,13 +2088,15 @@ begin
|
|||||||
OutputStateFile:=SwitchPathDelims(
|
OutputStateFile:=SwitchPathDelims(
|
||||||
XMLConfig.GetValue(Path+'OutputStateFile/Value',''),
|
XMLConfig.GetValue(Path+'OutputStateFile/Value',''),
|
||||||
PathDelimChanged);
|
PathDelimChanged);
|
||||||
FPackageType:=LazPackageTypeIdentToType(XMLConfig.GetValue(Path+'Type/Value',
|
|
||||||
LazPackageTypeIdents[lptRunTime]));
|
|
||||||
LoadFiles(Path+'Files/',FFiles);
|
LoadFiles(Path+'Files/',FFiles);
|
||||||
UpdateSourceDirectories;
|
UpdateSourceDirectories;
|
||||||
LoadFlags(Path);
|
LoadFlags(Path);
|
||||||
LoadPkgDependencyList(XMLConfig,Path+'RequiredPkgs/',
|
LoadPkgDependencyList(XMLConfig,Path+'RequiredPkgs/',
|
||||||
FFirstRequiredDependency,pdlRequires,Self,false);
|
FFirstRequiredDependency,pdlRequires,Self,false);
|
||||||
|
if FileVersion<2 then
|
||||||
|
FCompilerOptions.LoadFromXMLConfig(XMLConfig,'CompilerOptions/')
|
||||||
|
else
|
||||||
|
FCompilerOptions.LoadFromXMLConfig(XMLConfig,Path+'CompilerOptions/');
|
||||||
FUsageOptions.LoadFromXMLConfig(XMLConfig,Path+'UsageOptions/',
|
FUsageOptions.LoadFromXMLConfig(XMLConfig,Path+'UsageOptions/',
|
||||||
PathDelimChanged);
|
PathDelimChanged);
|
||||||
fPublishOptions.LoadFromXMLConfig(XMLConfig,Path+'PublishOptions/',
|
fPublishOptions.LoadFromXMLConfig(XMLConfig,Path+'PublishOptions/',
|
||||||
@ -2127,6 +2129,7 @@ procedure TLazPackage.SaveToXMLConfig(XMLConfig: TXMLConfig; const Path: string
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
XMLConfig.SetValue(Path+'Version',LazPkgXMLFileVersion);
|
||||||
XMLConfig.SetDeleteValue(Path+'PathDelim/Value',PathDelim,'/');
|
XMLConfig.SetDeleteValue(Path+'PathDelim/Value',PathDelim,'/');
|
||||||
XMLConfig.SetDeleteValue(Path+'Name/Value',FName,'');
|
XMLConfig.SetDeleteValue(Path+'Name/Value',FName,'');
|
||||||
XMLConfig.SetDeleteValue(Path+'Author/Value',FAuthor,'');
|
XMLConfig.SetDeleteValue(Path+'Author/Value',FAuthor,'');
|
||||||
|
@ -198,6 +198,7 @@ type
|
|||||||
FOnFreeEditor: TOnFreePkgEditor;
|
FOnFreeEditor: TOnFreePkgEditor;
|
||||||
FOnGetIDEFileInfo: TGetIDEFileStateEvent;
|
FOnGetIDEFileInfo: TGetIDEFileStateEvent;
|
||||||
FOnGetUnitRegisterInfo: TOnGetUnitRegisterInfo;
|
FOnGetUnitRegisterInfo: TOnGetUnitRegisterInfo;
|
||||||
|
FOnImExportCompilerOptions: TNotifyEvent;
|
||||||
FOnInstallPackage: TOnInstallPackage;
|
FOnInstallPackage: TOnInstallPackage;
|
||||||
FOnOpenFile: TOnOpenFile;
|
FOnOpenFile: TOnOpenFile;
|
||||||
FOnOpenPackage: TOnOpenPackage;
|
FOnOpenPackage: TOnOpenPackage;
|
||||||
@ -262,6 +263,8 @@ type
|
|||||||
write FOnUninstallPackage;
|
write FOnUninstallPackage;
|
||||||
property OnDeleteAmbigiousFiles: TOnDeleteAmbigiousFiles
|
property OnDeleteAmbigiousFiles: TOnDeleteAmbigiousFiles
|
||||||
read FOnDeleteAmbigiousFiles write FOnDeleteAmbigiousFiles;
|
read FOnDeleteAmbigiousFiles write FOnDeleteAmbigiousFiles;
|
||||||
|
property OnImExportCompilerOptions: TNotifyEvent
|
||||||
|
read FOnImExportCompilerOptions write FOnImExportCompilerOptions;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
var
|
var
|
||||||
@ -1033,6 +1036,8 @@ var
|
|||||||
begin
|
begin
|
||||||
CompilerOptsDlg:=TfrmCompilerOptions.Create(Self);
|
CompilerOptsDlg:=TfrmCompilerOptions.Create(Self);
|
||||||
CompilerOptsDlg.CompilerOpts:=LazPackage.CompilerOptions;
|
CompilerOptsDlg.CompilerOpts:=LazPackage.CompilerOptions;
|
||||||
|
CompilerOptsDlg.OnImExportCompilerOptions:=
|
||||||
|
PackageEditors.OnImExportCompilerOptions;
|
||||||
with CompilerOptsDlg do begin
|
with CompilerOptsDlg do begin
|
||||||
GetCompilerOptions;
|
GetCompilerOptions;
|
||||||
Caption:=Format(lisPckEditCompilerOptionsForPackage, [LazPackage.IDAsString]
|
Caption:=Format(lisPckEditCompilerOptionsForPackage, [LazPackage.IDAsString]
|
||||||
|
@ -82,6 +82,7 @@ type
|
|||||||
procedure OnPackageEditorGetUnitRegisterInfo(Sender: TObject;
|
procedure OnPackageEditorGetUnitRegisterInfo(Sender: TObject;
|
||||||
const AFilename: string; var TheUnitName: string;
|
const AFilename: string; var TheUnitName: string;
|
||||||
var HasRegisterProc: boolean);
|
var HasRegisterProc: boolean);
|
||||||
|
procedure OnPackageEditorImExportCompilerOptions(Sender: TObject);
|
||||||
// package graph
|
// package graph
|
||||||
function PackageGraphExplorerOpenPackage(Sender: TObject;
|
function PackageGraphExplorerOpenPackage(Sender: TObject;
|
||||||
APackage: TLazPackage): TModalResult;
|
APackage: TLazPackage): TModalResult;
|
||||||
@ -401,6 +402,11 @@ begin
|
|||||||
DoGetUnitRegisterInfo(AFilename,TheUnitName,HasRegisterProc,true);
|
DoGetUnitRegisterInfo(AFilename,TheUnitName,HasRegisterProc,true);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TPkgManager.OnPackageEditorImExportCompilerOptions(Sender: TObject);
|
||||||
|
begin
|
||||||
|
MainIDE.DoImExportCompilerOptions(Sender);
|
||||||
|
end;
|
||||||
|
|
||||||
function TPkgManager.OnPackageEditorOpenPackage(Sender: TObject;
|
function TPkgManager.OnPackageEditorOpenPackage(Sender: TObject;
|
||||||
APackage: TLazPackage): TModalResult;
|
APackage: TLazPackage): TModalResult;
|
||||||
begin
|
begin
|
||||||
@ -1369,6 +1375,7 @@ begin
|
|||||||
PackageEditors.OnInstallPackage:=@OnPackageEditorInstallPackage;
|
PackageEditors.OnInstallPackage:=@OnPackageEditorInstallPackage;
|
||||||
PackageEditors.OnUninstallPackage:=@OnPackageEditorUninstallPackage;
|
PackageEditors.OnUninstallPackage:=@OnPackageEditorUninstallPackage;
|
||||||
PackageEditors.OnDeleteAmbigiousFiles:=@OnPackageEditorDeleteAmbigiousFiles;
|
PackageEditors.OnDeleteAmbigiousFiles:=@OnPackageEditorDeleteAmbigiousFiles;
|
||||||
|
PackageEditors.OnImExportCompilerOptions:=@OnPackageEditorImExportCompilerOptions;
|
||||||
|
|
||||||
// package macros
|
// package macros
|
||||||
CodeToolBoss.DefineTree.MacroFunctions.AddExtended(
|
CodeToolBoss.DefineTree.MacroFunctions.AddExtended(
|
||||||
|
Loading…
Reference in New Issue
Block a user