mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 16:24:04 +02:00
3981e361cd
This example is no longer useful as everything is explained in the documentation of ma_context_init() and ma_device_init().
11 lines
533 B
Batchfile
11 lines
533 B
Batchfile
@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% |