mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Example build scripts are no longer being maintained.
See the readme for an example build script for GCC and Emscripten.
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
cc ../simple_playback.c -o ../bin/simple_playback -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
cc ../simple_capture.c -o ../bin/simple_capture -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
cc ../simple_mixing.c -o ../bin/simple_mixing -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
cc ../simple_playback_sine.c -o ../bin/simple_playback_sine -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
@@ -1 +0,0 @@
|
||||
emcc ../simple_playback_sine.c -o ../bin/simple_playback_sine.html -s WASM=0 -Wall
|
||||
@@ -1,5 +0,0 @@
|
||||
cc ../simple_playback.c -o ../bin/simple_playback -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -ldl -lm
|
||||
cc ../simple_capture.c -o ../bin/simple_capture -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -ldl -lm
|
||||
cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -ldl -lm
|
||||
cc ../simple_mixing.c -o ../bin/simple_mixing -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -ldl -lm
|
||||
cc ../simple_playback_sine.c -o ../bin/simple_playback_sine -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -ldl -lm
|
||||
@@ -1,5 +0,0 @@
|
||||
cc ../simple_playback.c -o ../bin/simple_playback -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
cc ../simple_capture.c -o ../bin/simple_capture -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
cc ../simple_mixing.c -o ../bin/simple_mixing -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
cc ../simple_playback_sine.c -o ../bin/simple_playback_sine -Wall -Wpedantic -std=c89 -ansi -pedantic -lpthread -lm
|
||||
@@ -1,11 +0,0 @@
|
||||
@echo off
|
||||
SET c_compiler=gcc
|
||||
SET cpp_compiler=g++
|
||||
SET options=-Wall -Wpedantic -std=c89 -ansi -pedantic
|
||||
@echo on
|
||||
|
||||
%c_compiler% ../simple_playback.c -o ../bin/simple_playback.exe %options%
|
||||
%c_compiler% ../simple_capture.c -o ../bin/simple_capture.exe %options%
|
||||
%c_compiler% ../simple_enumeration.c -o ../bin/simple_enumeration.exe %options%
|
||||
%c_compiler% ../simple_mixing.c -o ../bin/simple_mixing.exe %options%
|
||||
%c_compiler% ../simple_playback_sine.c -o ../bin/simple_playback_sine.exe %options%
|
||||
Reference in New Issue
Block a user