mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-09 11:19:31 +01:00
12 lines
464 B
PHP
12 lines
464 B
PHP
{ Make DB directory and all subdirectories }
|
|
{ FULLSQLDB will be defined if included from SQLDB directory alone}
|
|
{ FULLDB will be defined if included from db directory alone}
|
|
{ FULLFCL will be defined if included from main FCL directory }
|
|
|
|
Targets.ResetDefaults;
|
|
Targets.DefaultDir:='db/sqldb/mysql';
|
|
{ Drivers only for the following OSes }
|
|
Targets.DefaultOS:=[win32,openbsd,netbsd,freebsd,darwin,linux];
|
|
T:=Targets.AddUnit('mysql4conn');
|
|
T.ResourceStrings:=True;
|