fpmake.inc 559 B

12345678910111213
  1. { Make DB directory and all subdirectories }
  2. { FULLSQLDB will be defined if included from SQLDB directory alone}
  3. { FULLDB will be defined if included from db directory alone}
  4. { FULLFCL will be defined if included from main FCL directory }
  5. Targets.ResetDefaults;
  6. Targets.DefaultDir:='db/sqldb/postgres';
  7. { Drivers only for the following OSes }
  8. Targets.DefaultOS:=[win32,openbsd,netbsd,freebsd,darwin,linux,haiku,dragonfly];
  9. T:=Targets.AddUnit('pqconnection');
  10. T.ResourceStrings:=True;
  11. T:=Targets.AddUnit('pqeventmonitor');
  12. T.Dependencies.Add('pqconnection');