fpmake.inc 443 B

123456789101112131415161718192021
  1. { Make DB directory and all subdirectories }
  2. { FULLDB will be defined if included from db directory }
  3. { FULLFCL will be defined if included from main FCL directory }
  4. Targets.ResetDefaults;
  5. Targets.DefaultDir:='db/sqldb';
  6. T:=Targets.AddUnit('sqldb');
  7. T.ResourceStrings:=True;
  8. { Include connection drivers }
  9. { PosGreSQL }
  10. {$i postgres/fpmake.inc}
  11. { MySQL }
  12. {$i mysql/fpmake.inc}
  13. { Interbase/Firebird }
  14. {$i interbase/fpmake.inc}