blob: e76540e1dc70c2a766036927872f7175d1dcac4b (
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,haiku];
T:=Targets.AddUnit('mysql4conn');
T.ResourceStrings:=True;
|