mirror of
https://github.com/azahar-emu/soundtouch
synced 2025-11-06 23:20:03 +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>
11 lines
534 B
Plaintext
11 lines
534 B
Plaintext
This is Lazarus Pascal example that loads the SoundTouch dynamic-load library
|
|
and queries the library version as a simple example how to load SoundTouch from
|
|
Pascal / Lazarus.
|
|
|
|
Set the SoundTouch dynamic library file name in the 'InitDLL' procedure of
|
|
file 'SoundTouchDLL.pas' depending on if you're building for Windows or Linux.
|
|
|
|
The example expects the the 'libSoundTouchDll.so' (linux) or 'SoundTouch.dll' (Windows)
|
|
library binary files is found within this project directory, either via soft-link
|
|
(in Linux) or as a copied file.
|