mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 05:39:14 +02:00
IDE: rename linking options -> debugging options
git-svn-id: trunk@42046 -
This commit is contained in:
parent
b22e3f25f8
commit
9d59791716
4
.gitattributes
vendored
4
.gitattributes
vendored
@ -4997,8 +4997,8 @@ ide/frames/compiler_compilation_options.lfm svneol=native#text/plain
|
|||||||
ide/frames/compiler_compilation_options.pas svneol=native#text/pascal
|
ide/frames/compiler_compilation_options.pas svneol=native#text/pascal
|
||||||
ide/frames/compiler_config_target.lfm svneol=native#text/plain
|
ide/frames/compiler_config_target.lfm svneol=native#text/plain
|
||||||
ide/frames/compiler_config_target.pas svneol=native#text/pascal
|
ide/frames/compiler_config_target.pas svneol=native#text/pascal
|
||||||
ide/frames/compiler_linking_options.lfm svneol=native#text/plain
|
ide/frames/compiler_debugging_options.lfm svneol=native#text/plain
|
||||||
ide/frames/compiler_linking_options.pas svneol=native#text/pascal
|
ide/frames/compiler_debugging_options.pas svneol=native#text/pascal
|
||||||
ide/frames/compiler_messages_options.lfm svneol=native#text/plain
|
ide/frames/compiler_messages_options.lfm svneol=native#text/plain
|
||||||
ide/frames/compiler_messages_options.pas svneol=native#text/plain
|
ide/frames/compiler_messages_options.pas svneol=native#text/plain
|
||||||
ide/frames/compiler_modematrix.lfm svneol=native#text/plain
|
ide/frames/compiler_modematrix.lfm svneol=native#text/plain
|
||||||
|
@ -43,8 +43,7 @@ uses
|
|||||||
IDEMsgIntf, LazIDEIntf, ProjectIntf, CompOptsIntf;
|
IDEMsgIntf, LazIDEIntf, ProjectIntf, CompOptsIntf;
|
||||||
|
|
||||||
type
|
type
|
||||||
TOnCmdLineCreate = procedure(var CmdLine: string; var Abort:boolean)
|
TOnCmdLineCreate = procedure(var CmdLine: string; var Abort:boolean) of object;
|
||||||
of object;
|
|
||||||
|
|
||||||
{$IFDEF WithAsyncCompile}
|
{$IFDEF WithAsyncCompile}
|
||||||
TBuildProjectData = class
|
TBuildProjectData = class
|
||||||
|
@ -198,7 +198,7 @@ begin
|
|||||||
P.Sources.AddSrc('frames/compiler_codegen_options.pas');
|
P.Sources.AddSrc('frames/compiler_codegen_options.pas');
|
||||||
P.Sources.AddSrc('frames/compiler_compilation_options.pas');
|
P.Sources.AddSrc('frames/compiler_compilation_options.pas');
|
||||||
P.Sources.AddSrc('frames/compiler_config_target.pas');
|
P.Sources.AddSrc('frames/compiler_config_target.pas');
|
||||||
P.Sources.AddSrc('frames/compiler_linking_options.pas');
|
P.Sources.AddSrc('frames/compiler_debugging_options.pas');
|
||||||
P.Sources.AddSrc('frames/compiler_messages_options.pas');
|
P.Sources.AddSrc('frames/compiler_messages_options.pas');
|
||||||
P.Sources.AddSrc('frames/compiler_other_options.pas');
|
P.Sources.AddSrc('frames/compiler_other_options.pas');
|
||||||
P.Sources.AddSrc('frames/compiler_parsing_options.pas');
|
P.Sources.AddSrc('frames/compiler_parsing_options.pas');
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
unit compiler_linking_options;
|
unit compiler_debugging_options;
|
||||||
|
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
|
@ -130,7 +130,7 @@ uses
|
|||||||
project_misc_options,
|
project_misc_options,
|
||||||
// project compiler option frames
|
// project compiler option frames
|
||||||
compiler_path_options, compiler_config_target, compiler_parsing_options,
|
compiler_path_options, compiler_config_target, compiler_parsing_options,
|
||||||
compiler_codegen_options, compiler_linking_options, compiler_verbosity_options,
|
compiler_codegen_options, compiler_debugging_options, compiler_verbosity_options,
|
||||||
compiler_messages_options, Compiler_Other_Options, compiler_compilation_options,
|
compiler_messages_options, Compiler_Other_Options, compiler_compilation_options,
|
||||||
compiler_buildmacro_options, Compiler_ModeMatrix,
|
compiler_buildmacro_options, Compiler_ModeMatrix,
|
||||||
// package option frames
|
// package option frames
|
||||||
|
Loading…
Reference in New Issue
Block a user