# HG changeset patch # User Robert McIntyre # Date 1321758590 25200 # Node ID 1fc162d84343863c014bdd869c7884174bcdfaa1 # Parent f79bef1687c5f4a67cbc132903a24a9348d470f5 updated README diff -r f79bef1687c5 -r 1fc162d84343 README --- a/README Sat Nov 19 19:25:21 2011 -0700 +++ b/README Sat Nov 19 20:09:50 2011 -0700 @@ -1,26 +1,27 @@ Source Install ============== -To install OpenAL Soft, use your favorite shell to go into the build/ -directory, and run: +This is a special version of OpenAL Soft which supports only one +device, the "send" device, which supports multiple listeners in a +limited fashion. +Instructions: + +First compile necessary JNI bindings + +cd ./java +ant native +cd .. + +Then configure the project using CMake + +mkdir build +cd build cmake .. -Assuming configuration went well, you can then build it, typically -using GNU Make (KDevelop, MSVC, and others are possible depending on -your system setup and CMake configuration). +Build the project. - -This is a special version of OpenAL Soft which supports only one -device, the "send" device, which supports multiple listeners in a -limited fashion. To compile the jni bindings, go into the java/ -directory and run : - -ant - -*after* following the cmake process above. The JNI bindings will be - available in java/dist/audio-send.jar, and the compiled native - library will be in java/dist/audio-send-natives.jar. +make Acknowledgements