From 1e9e2759b7e7d118173641945c6f88d4c3db9283 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 30 Jun 2018 19:28:58 +1000 Subject: [PATCH] Add examples build script for Mac. --- examples/build/mal_build_examples_mac | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 examples/build/mal_build_examples_mac diff --git a/examples/build/mal_build_examples_mac b/examples/build/mal_build_examples_mac new file mode 100755 index 00000000..3956d8a8 --- /dev/null +++ b/examples/build/mal_build_examples_mac @@ -0,0 +1,4 @@ +cc ../simple_playback.c -o ../bin/simple_playback -Wall -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_enumeration.c -o ../bin/simple_enumeration -Wall -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