Commit 0d221755 authored by David Reid's avatar David Reid

Update examples build scripts.

parent c6f54e12
cc ../simple_playback.c -o ../bin/simple_playback -Wall -lpthread -lm cc ../simple_playback.c -o ../bin/simple_playback -Wall -Wpedantic -std=c99 -lpthread -lm
cc ../simple_capture.c -o ../bin/simple_capture -Wall -lpthread -lm cc ../simple_capture.c -o ../bin/simple_capture -Wall -Wpedantic -std=c99 -lpthread -lm
cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -lpthread -lm cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -Wpedantic -std=c99 -lpthread -lm
cc ../advanced_config.c -o ../bin/advanced_config -Wall -lpthread -lm cc ../simple_mixing.c -o ../bin/simple_mixing -Wall -Wpedantic -std=c99 -lpthread -lm
cc ../simple_playback_emscripten.c -o ../bin/simple_playback_emscripten -Wall -Wpedantic -std=c99 -lpthread -lm
cc ../advanced_config.c -o ../bin/advanced_config -Wall -Wpedantic -std=c99 -lpthread -lm
cc ../simple_playback.c -o ../bin/simple_playback -Wall -ldl -lpthread -lm cc ../simple_playback.c -o ../bin/simple_playback -Wall -Wpedantic -std=c99 -lpthread -ldl -lm
cc ../simple_capture.c -o ../bin/simple_capture -Wall -ldl -lpthread -lm cc ../simple_capture.c -o ../bin/simple_capture -Wall -Wpedantic -std=c99 -lpthread -ldl -lm
cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -ldl -lpthread -lm cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -Wpedantic -std=c99 -lpthread -ldl -lm
cc ../advanced_config.c -o ../bin/advanced_config -Wall -ldl -lpthread -lm cc ../simple_mixing.c -o ../bin/simple_mixing -Wall -Wpedantic -std=c99 -lpthread -ldl -lm
cc ../simple_playback_emscripten.c -o ../bin/simple_playback_emscripten -Wall -Wpedantic -std=c99 -lpthread -ldl -lm
cc ../advanced_config.c -o ../bin/advanced_config -Wall -Wpedantic -std=c99 -lpthread -ldl -lm
\ No newline at end of file
cc ../simple_playback.c -o ../bin/simple_playback -Wall -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox cc ../simple_playback.c -o ../bin/simple_playback -Wall -Wpedantic -std=c99 -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox
cc ../simple_capture.c -o ../bin/simple_capture -Wall -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox cc ../simple_capture.c -o ../bin/simple_capture -Wall -Wpedantic -std=c99 -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox
cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox cc ../simple_enumeration.c -o ../bin/simple_enumeration -Wall -Wpedantic -std=c99 -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox
cc ../advanced_config.c -o ../bin/advanced_config -Wall -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox cc ../advanced_config.c -o ../bin/advanced_config -Wall -Wpedantic -std=c99 -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox
cc ../simple_mixing.c -o ../bin/simple_mixing -Wall -Wpedantic -std=c99 -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox
cc ../simple_playback_emscripten.c -o ../bin/simple_playback_emscripten -Wall -Wpedantic -std=c99 -lpthread -lm -framework CoreFoundation -framework CoreAudio -framework AudioToolbox
\ No newline at end of file
@echo off @echo off
SET c_compiler=gcc SET c_compiler=gcc
SET cpp_compiler=g++ SET cpp_compiler=g++
SET options=-Wall SET options=-Wall -Wpedantic -std=c99
@echo on @echo on
%c_compiler% ../simple_playback.c -o ../bin/simple_playback.exe %options% %c_compiler% ../simple_playback.c -o ../bin/simple_playback.exe %options%
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment