Subversion Repositories spacemission

Rev

Blame | Last modification | View Log | RSS feed

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