aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorChris Kiefer <chrisk13fer@gmail.com>2011-08-23 16:59:47 +0100
committerChris Kiefer <chrisk13fer@gmail.com>2011-08-23 16:59:47 +0100
commit9b02537e82866bcfdcb22a5e7fd9c7f5217c2c64 (patch)
tree193b798778c258d52093f17fd41b2f250a079553 /README
parentbc4a8dbc0fb0fcafffa1e94edfaedf9c4845cecc (diff)
maximillian basic examples
Diffstat (limited to 'README')
-rw-r--r--README28
1 files changed, 28 insertions, 0 deletions
diff --git a/README b/README
index e69de29..7cbbf4b 100644
--- a/README
+++ b/README
@@ -0,0 +1,28 @@
+ .__ .__.__ .__
+ _____ _____ ___ __|__| _____ |__| | |__|____ ____
+ / \\__ \ \ \/ / |/ \| | | | \__ \ / \
+| Y Y \/ __ \_> <| | Y Y \ | |_| |/ __ \| | \
+|__|_| (____ /__/\_ \__|__|_| /__|____/__(____ /___| /
+ \/ \/ \/ \/ \/ \/
+
+
+:::::::::::::::::::::::::::BASIC EXAMPLES
+
+You can choose between using RTAudio and PortAudio drivers in player.h by uncommenting the appropriate line. To use PortAudio, you will need to compile the portAudio library from http://http://www.portaudio.com/ and link it with your executable.
+
+Examples demonstrating different features can be found in the maximilian_examples folder. To try them, replace the contents of main.cpp with the contents of a tutorial file and compile.
+
+
+:::MAC OSX XCODE PROJECT
+
+You can run the examples using the 'maximilianTest' XCode 3 project provided.
+
+
+:::COMMAND LINE COMPILATION IN MACOSX/LINUX etc
+
+> g++ -Wall -D__MACOSX_CORE__ -o maximilian main.cpp RtAudio.cpp player.cpp maximilian.cpp -framework CoreAudio -lpthread
+
+> ./maximilian
+
+
+