diff options
| author | Ray <[email protected]> | 2019-02-12 12:18:01 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-02-12 12:18:01 +0100 |
| commit | 944a388b1bfee6048528c29719c5a78d4888bfa5 (patch) | |
| tree | 950e70cdb956484807b8221bddeabc51200858c5 /examples/others/raudio_standalone.c | |
| parent | e7466eb0c4d2337d939cc7149e4e0eb8d5effd68 (diff) | |
| download | raylib-944a388b1bfee6048528c29719c5a78d4888bfa5.tar.gz raylib-944a388b1bfee6048528c29719c5a78d4888bfa5.zip | |
Include mini_al directly, no separate module
Diffstat (limited to 'examples/others/raudio_standalone.c')
| -rw-r--r-- | examples/others/raudio_standalone.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/others/raudio_standalone.c b/examples/others/raudio_standalone.c index 930bde85..02720837 100644 --- a/examples/others/raudio_standalone.c +++ b/examples/others/raudio_standalone.c @@ -5,17 +5,17 @@ * NOTE: This example does not require any graphic device, it can run directly on console. * * DEPENDENCIES: -* mini_al.h - Audio device management lib (http://kcat.strangesoft.net/openal.html) +* mini_al.h - Audio device management lib (https://github.com/dr-soft/mini_al) * stb_vorbis.h - Ogg audio files loading (http://www.nothings.org/stb_vorbis/) +* dr_mp3.h - MP3 audio file loading (https://github.com/mackron/dr_libs) +* dr_flac.h - FLAC audio file loading (https://github.com/mackron/dr_libs) * jar_xm.h - XM module file loading * jar_mod.h - MOD audio file loading -* dr_flac.h - FLAC audio file loading * * COMPILATION: -* gcc -c ..\..\src\external\mini_al.c -Wall -I. -* gcc -o audio_standalone.exe audio_standalone.c ..\..\src\raudio.c mini_al.o / -* -I..\..\src -I..\..\src\external -L. -Wall -std=c99 / -* -DAUDIO_STANDALONE -DSUPPORT_FILEFORMAT_WAV -DSUPPORT_FILEFORMAT_OGG +* gcc -o raudio_standalone.exe raudio_standalone.c ..\..\src\raudio.c / +* -I..\..\src -I..\..\src\external -L. -Wall -std=c99 -DRAUDIO_STANDALONE / +* -DSUPPORT_FILEFORMAT_WAV -DSUPPORT_FILEFORMAT_OGG -DSUPPORT_FILEFORMAT_MP3 * * LICENSE: zlib/libpng * |
