Mercurial > audio-send
changeset 28:1fc162d84343
updated README
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 19 Nov 2011 20:09:50 -0700 |
parents | f79bef1687c5 |
children | cdf320cb5949 |
files | README |
diffstat | 1 files changed, 17 insertions(+), 16 deletions(-) [+] |
line wrap: on
line diff
1.1 --- a/README Sat Nov 19 19:25:21 2011 -0700 1.2 +++ b/README Sat Nov 19 20:09:50 2011 -0700 1.3 @@ -1,26 +1,27 @@ 1.4 Source Install 1.5 ============== 1.6 1.7 -To install OpenAL Soft, use your favorite shell to go into the build/ 1.8 -directory, and run: 1.9 +This is a special version of OpenAL Soft which supports only one 1.10 +device, the "send" device, which supports multiple listeners in a 1.11 +limited fashion. 1.12 1.13 +Instructions: 1.14 + 1.15 +First compile necessary JNI bindings 1.16 + 1.17 +cd ./java 1.18 +ant native 1.19 +cd .. 1.20 + 1.21 +Then configure the project using CMake 1.22 + 1.23 +mkdir build 1.24 +cd build 1.25 cmake .. 1.26 1.27 -Assuming configuration went well, you can then build it, typically 1.28 -using GNU Make (KDevelop, MSVC, and others are possible depending on 1.29 -your system setup and CMake configuration). 1.30 +Build the project. 1.31 1.32 - 1.33 -This is a special version of OpenAL Soft which supports only one 1.34 -device, the "send" device, which supports multiple listeners in a 1.35 -limited fashion. To compile the jni bindings, go into the java/ 1.36 -directory and run : 1.37 - 1.38 -ant 1.39 - 1.40 -*after* following the cmake process above. The JNI bindings will be 1.41 - available in java/dist/audio-send.jar, and the compiled native 1.42 - library will be in java/dist/audio-send-natives.jar. 1.43 +make 1.44 1.45 1.46 Acknowledgements