mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-20 16:29:31 +01:00
15 lines
401 B
PHP
15 lines
401 B
PHP
{$ifdef Delphi}
|
|
const fppkg_default : array[0..0] of string[240]=(
|
|
{$else Delphi}
|
|
const fppkg_default : array[0..0,1..240] of char=(
|
|
{$endif Delphi}
|
|
'[Defaults]'#010+
|
|
'ConfigVersion=4'#010+
|
|
'GlobalInstallDir=%basepath%'#010+
|
|
'LocalInstallDir={LocalRepository}lib/%fpcversion%/'#010+
|
|
'Compiler=%fpcbin%'#010+
|
|
'OS=%fpctargetos%'#010+
|
|
'CPU=%fpctarget%'#010+
|
|
'Version=%fpcversion%'#010
|
|
);
|