Subversion Repositories spacemission

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

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