2
0

DXPExpert.dpk 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package DXPExpert;
  2. {$R *.res}
  3. {$ALIGN 8}
  4. {$ASSERTIONS ON}
  5. {$BOOLEVAL OFF}
  6. {$DEBUGINFO ON}
  7. {$EXTENDEDSYNTAX ON}
  8. {$IMPORTEDDATA ON}
  9. {$IOCHECKS ON}
  10. {$LOCALSYMBOLS ON}
  11. {$LONGSTRINGS ON}
  12. {$OPENSTRINGS ON}
  13. {$OPTIMIZATION ON}
  14. {$OVERFLOWCHECKS OFF}
  15. {$RANGECHECKS OFF}
  16. {$REFERENCEINFO ON}
  17. {$SAFEDIVIDE OFF}
  18. {$STACKFRAMES OFF}
  19. {$TYPEDADDRESS OFF}
  20. {$VARSTRINGCHECKS ON}
  21. {$WRITEABLECONST OFF}
  22. {$MINENUMSIZE 1}
  23. {$IMAGEBASE $400000}
  24. {$DESCRIPTION 'DelphiXP cross-platform support expert'}
  25. {$DESIGNONLY}
  26. {$IMPLICITBUILD OFF}
  27. requires
  28. rtl,
  29. designide,
  30. vcl,
  31. vclshlctrls;
  32. contains
  33. DXPExpertUnit in 'DXPExpertUnit.pas',
  34. DXPExpertModule in 'DXPExpertModule.pas' {DMDXPExpertModule: TDataModule},
  35. FDXPOptions in 'FDXPOptions.pas' {DXPOptions},
  36. DXPGlobals in 'DXPGlobals.pas',
  37. FDXPDirectoryDialog in 'FDXPDirectoryDialog.pas' {DXPDirectoryDialog},
  38. DXPUtils in 'DXPUtils.pas',
  39. FDXPCompileLog in 'FDXPCompileLog.pas' {DXPCompileLog},
  40. FDXPPathsDialog in 'FDXPPathsDialog.pas' {DXPPathsDialog},
  41. DXPFPCConfig in 'DXPFPCConfig.pas',
  42. DXPConfig in 'DXPConfig.pas',
  43. FDXPFPCOptions in 'FDXPFPCOptions.pas' {DXPFPCOptions},
  44. FDXPProgress in 'FDXPProgress.pas' {DXPProgress};
  45. end.