mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 18:32:37 +02:00
44 lines
1.1 KiB
ObjectPascal
44 lines
1.1 KiB
ObjectPascal
unit strdelphitool;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
const
|
|
PlusMinus : Array[Boolean] of char = ('-','+');
|
|
|
|
|
|
const
|
|
// General
|
|
DelphiToolsOptionsFile = 'delphitooloptions.xml';
|
|
SDelphiToolName = 'DCC';
|
|
SSubToolDelphi = 'Delphi';
|
|
SDelphiParserName = 'Delphi Compiler';
|
|
|
|
// Settings
|
|
KeyCompiler = 'compiler/value';
|
|
KeyGenConfigFile = 'genconfigfile/value';
|
|
KeyConfigFileExt = 'configfileext/value';
|
|
KeyConvertPaths = 'convertunixpath/value';
|
|
|
|
|
|
resourcestring
|
|
SDelphiLocalizedParserName = 'Delphi Compiler';
|
|
SDelphiToolOptionsTitle = 'Delphi compiler plugin options';
|
|
SDelphiCompilerFileNameCaption = 'Delphi compiler executable';
|
|
SConfigFileExtensionCaption = 'Configuration file extension';
|
|
SGenerateConfigFileCaption = 'Generate Delphi config file based on FPC compiler options';
|
|
SConvertDosToUnixCaption = 'Map filenames from Windows to Unix notation';
|
|
SDelphiCompilerConfigFileName = 'Delphi compiler configuration filename for project';
|
|
SDelphiCompileCommand = 'Delphi compile command';
|
|
SDelphiCompilerArgs = 'Additional compiler options';
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|