mirror of
https://github.com/azahar-emu/soundtouch
synced 2025-11-07 07:30:02 +01:00
9 lines
322 B
Bash
Executable File
9 lines
322 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This script compiles SoundTouch dynamic-link library for GNU environment
|
|
# with wrapper functions that are easier to import to Java / Mono / etc
|
|
#
|
|
|
|
g++ -fPIC -shared -DDLL_EXPORTS -fvisibility=hidden -I../../include -o SoundTouchDll.so \
|
|
SoundTouchDLL.cpp ../SoundTouch/*.cpp -I../SoundTouch -O3 -msse
|