Subversion Repositories spacemission

Rev

Blame | Last modification | View Log | RSS feed

  1. package DelphiX160;
  2.  
  3. {$R *.res}
  4. {$R 'DelphiX.dcr'}
  5. {$ALIGN 8}
  6. {$ASSERTIONS OFF}
  7. {$BOOLEVAL OFF}
  8. {$DEBUGINFO OFF}
  9. {$EXTENDEDSYNTAX ON}
  10. {$IMPORTEDDATA ON}
  11. {$IOCHECKS ON}
  12. {$LOCALSYMBOLS OFF}
  13. {$LONGSTRINGS ON}
  14. {$OPENSTRINGS ON}
  15. {$OPTIMIZATION ON}
  16. {$OVERFLOWCHECKS OFF}
  17. {$RANGECHECKS OFF}
  18. {$REFERENCEINFO OFF}
  19. {$SAFEDIVIDE OFF}
  20. {$STACKFRAMES OFF}
  21. {$TYPEDADDRESS OFF}
  22. {$VARSTRINGCHECKS ON}
  23. {$WRITEABLECONST ON}
  24. {$MINENUMSIZE 1}
  25. {$IMAGEBASE $400000}
  26. {$DESCRIPTION 'DelphiX - DirectX components for Delphi XE2'}
  27. {$DESIGNONLY}
  28. {$IMPLICITBUILD ON}
  29.  
  30. requires
  31.   vcl,
  32.   vclsmp,
  33.   designide,
  34.   rtl,
  35.   vclx,
  36.   vclimg;
  37.  
  38. contains
  39.   DIB in 'DIB.pas',
  40.   DXClass in 'DXClass.pas',
  41.   DXConsts in 'DXConsts.pas',
  42.   DXDraws in 'DXDraws.pas',
  43.   DXETable in 'DXETable.pas',
  44.   DXInput in 'DXInput.pas',
  45.   DXPlay in 'DXPlay.pas',
  46.   DXPlayFm in 'DXPlayFm.pas' {DelphiXDXPlayForm},
  47.   DXRender in 'DXRender.pas',
  48.   DXReg in 'DXReg.pas',
  49.   DXSounds in 'DXSounds.pas',
  50.   DXSprite in 'DXSprite.pas',
  51.   DXWave in 'DXWave.pas',
  52.   DXFFBEdit in 'DXFFBEdit.pas' {DelphiXFFEditForm},
  53.   DXGUIDEdit in 'DXGUIDEdit.pas' {DelphiXGUIDEditForm},
  54.   DXInptEdit in 'DXInptEdit.pas' {DelphiXInputEditForm},
  55.   DXPictEdit in 'DXPictEdit.pas' {DelphiXPictureEditForm},
  56.   DXWaveEdit in 'DXWaveEdit.pas' {DelphiXWaveEditForm},
  57.   TurboPixels in 'TurboPixels.pas',
  58.   DXSpriteEdit in 'DXSpriteEdit.pas' {DelphiXSpriteEditForm},
  59.   DXMidiEdit in 'DXMidiEdit.pas' {DelphiXMidiEditForm},
  60.   DXMapEditProperties in 'DXMapEditProperties.pas' {DelphiXMapEditPropertiesForm},
  61.   DXMapEdit in 'DXMapEdit.pas' {DelphiXMapEditForm},
  62.   DxPathEdit in 'DxPathEdit.pas' {DelphiXPathsEditForm},
  63.   DXGlueItEdit in 'DXGlueItEdit.pas' {DXGlueItEditor},
  64.   DXDIBEffectEdit in 'DXDIBEffectEdit.pas' {TDelphiXDIBEffectEditForm}{$IFDEF SXEXTENSIONS},
  65.   SXReg in 'SXMedia\SXReg.pas',
  66.   MpSndSys in 'SXMedia\MpSndSys.pas',
  67.   SXAbout in 'SXMedia\SXAbout.pas' {AboutBox},
  68.   SXEditor in 'SXMedia\SXEditor.pas',
  69.   SXEngine in 'SXMedia\SXEngine.pas',
  70.   SXModPlayer in 'SXMedia\SXModPlayer.pas',
  71.   SXMovie in 'SXMedia\SXMovie.pas'{$ENDIF};
  72.  
  73. end.