blob: e484ae4a9795f2ebfb6f2c2d8a2897a0a3c558f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ 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;
|