Subversion Repositories spacemission

Rev

Blame | Last modification | View Log | RSS feed

  1. package DelphiX;
  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'}
  27. {$IFDEF VER140} { Borland Delphi 6.x }
  28. {$LIBSUFFIX '60'}
  29. {$ENDIF}
  30. {$IFDEF VER145} { Borland C++Builder 6.x }
  31. {$LIBSUFFIX '65'}
  32. {$ENDIF}
  33. {$IFDEF VER150} { Borland Delphi 7.x }
  34. {$LIBSUFFIX '70'}
  35. {$ENDIF}
  36. {$IFDEF VER170} { Borland Delphi 2005 9.x }
  37. {$LIBSUFFIX '90'}
  38. {$ENDIF}
  39. {$IFDEF VER180} { Borland Delphi 2006, Turbo 10.x }   // JB
  40. {$LIBSUFFIX '100'}
  41. {$ENDIF}
  42. {$IFDEF VER185} { Borland Delphi 2007 11.x }   // JB
  43. {$LIBSUFFIX '110'}
  44. {$ENDIF}
  45. {$IFDEF VER200} { Borland Delphi 2009 12.x }   // JB
  46. {$LIBSUFFIX '120'}
  47. {$ENDIF}
  48. {$IFDEF VER210} { Borland Delphi 2010 14.x }   // JB
  49. {$LIBSUFFIX '140'}
  50. {$ENDIF}
  51.  
  52. {$DESIGNONLY}
  53. {$IMPLICITBUILD ON}
  54.  
  55. {Note: must be defined as global for SXMedia using}
  56. {$DEFINE D3D_deprecated}
  57.  
  58. requires
  59.   vcl,
  60.   vclsmp,
  61.   designide,
  62.   //png,
  63.   rtl,
  64.   vcljpg,
  65.   vclx;
  66.  
  67. contains
  68.   DIB in 'DIB.pas',
  69.   DXClass in 'DXClass.pas',
  70.   DXConsts in 'DXConsts.pas',
  71.   DXDraws in 'DXDraws.pas',
  72.   DXETable in 'DXETable.pas',
  73.   DXInput in 'DXInput.pas',
  74.   DXPlay in 'DXPlay.pas',
  75.   DXPlayFm in 'DXPlayFm.pas' {DelphiXDXPlayForm},
  76.   DXRender in 'DXRender.pas',
  77.   DXReg in 'DXReg.pas',
  78.   DXSounds in 'DXSounds.pas',
  79.   DXSprite in 'DXSprite.pas',
  80.   DXWave in 'DXWave.pas',
  81.   DXFFBEdit in 'DXFFBEdit.pas' {DelphiXFFEditForm},
  82.   DXGUIDEdit in 'DXGUIDEdit.pas' {DelphiXGUIDEditForm},
  83.   DXInptEdit in 'DXInptEdit.pas' {DelphiXInputEditForm},
  84.   DXPictEdit in 'DXPictEdit.pas' {DelphiXPictureEditForm},
  85.   DXWaveEdit in 'DXWaveEdit.pas' {DelphiXWaveEditForm},
  86.   TurboPixels in 'TurboPixels.pas',
  87.   DXSpriteEdit in 'DXSpriteEdit.pas' {DelphiXSpriteEditForm},
  88.   DXMidiEdit in 'DXMidiEdit.pas' {DelphiXMidiEditForm},
  89.   DXMapEditProperties in 'DXMapEditProperties.pas' {DelphiXMapEditPropertiesForm},
  90.   DXMapEdit in 'DXMapEdit.pas' {DelphiXMapEditForm},
  91.   DxPathEdit in 'DxPathEdit.pas' {DelphiXPathsEditForm},
  92.   DXGlueItEdit in 'DXGlueItEdit.pas' {DXGlueItEditor},
  93.   DXDIBEffectEdit in 'DXDIBEffectEdit.pas' {TDelphiXDIBEffectEditForm},
  94.   SXReg in '.\SXMedia\SXReg.pas',
  95.   SXEditor in '.\SXMedia\SXEditor.pas',
  96.   SXAbout in '.\SXMedia\SXAbout.pas',
  97.   MpSndSys in '.\SXMedia\MpSndSys.pas',
  98.   SXEngine in '.\SXMedia\SXEngine.pas',
  99.   SXModPlayer in '.\SXMedia\SXModPlayer.pas',
  100.   SXMovie in '.\SXMedia\SXMovie.pas';
  101.  
  102. end.