mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 13:18:08 +02:00
65 lines
1.2 KiB
ObjectPascal
65 lines
1.2 KiB
ObjectPascal
unit PkgSysBasePkgs;
|
|
|
|
{$mode ObjFPC}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
// the base packages needed by the minimal IDE
|
|
TLazarusIDEBasePkg = (
|
|
libpFCL,
|
|
libpLazUtils,
|
|
libpFreeTypeLaz,
|
|
libpBuildIntf,
|
|
libpCodeTools,
|
|
libpLCLBase,
|
|
libpLCL,
|
|
libpIDEIntf,
|
|
libpSynEdit,
|
|
libpLazDebuggerIntf,
|
|
libpDebuggerIntf,
|
|
libpCmdLineDebuggerBase,
|
|
libpfpdebug,
|
|
libpLazDebuggerGdbmi,
|
|
libpLazDebuggerFp,
|
|
libpLazDebuggerLldb,
|
|
libpLazDebuggerFpLldb,
|
|
libpLazControls,
|
|
libpLazControlDsgn,
|
|
libpLCLExtensions_package,
|
|
libpLazVirtualtreeview_package,
|
|
libpIdeConfig,
|
|
libpIdeDebugger
|
|
);
|
|
const
|
|
LazarusIDEBasePkgNames: array[TLazarusIDEBasePkg] of string = (
|
|
'FCL',
|
|
'LazUtils',
|
|
'freetypelaz',
|
|
'BuildIntf',
|
|
'CodeTools',
|
|
'LCLBase',
|
|
'LCL',
|
|
'IDEIntf',
|
|
'SynEdit',
|
|
'LazDebuggerIntf',
|
|
'DebuggerIntf',
|
|
'CmdLineDebuggerBase',
|
|
'fpdebug',
|
|
'LazDebuggerGdbmi',
|
|
'LazDebuggerFp',
|
|
'LazDebuggerLldb',
|
|
'LazDebuggerFpLldb',
|
|
'LazControls',
|
|
'LazControlDsgn',
|
|
'lclextensions_package',
|
|
'laz.virtualtreeview_package',
|
|
'IdeConfig',
|
|
'IdeDebugger'
|
|
);
|
|
|
|
implementation
|
|
|
|
end.
|
|
|