mirror of
https://github.com/azahar-emu/soundtouch
synced 2025-11-07 15:40:04 +01:00
- Migrate configuration.ac file to new autotools - add building of also the dynamic-link version within 'source/SoundTouchDLL' directory from the main-level makefile - add a simple lazarus/pascal example project that uses the dynamic-link version of the SoundTouch library Signed-off-by: Olli <oparviai'at'iki.fi>
26 lines
407 B
ObjectPascal
26 lines
407 B
ObjectPascal
program soundtouchtest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
{$ENDIF}
|
|
{$IFDEF HASAMIGA}
|
|
athreads,
|
|
{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, main
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|