| 33 | | osc/OscUnitTests -- unit test program for the OSC modules |
|---|
| 34 | | osc/OscDump -- a program that prints received OSC packets |
|---|
| 35 | | osc/OscSendTests -- examples of how to send messages |
|---|
| 36 | | osc/OscReceiveTest -- example of how to receive the messages sent by OSCSendTests |
|---|
| | 33 | tests/OscUnitTests -- unit test program for the OSC modules |
|---|
| | 34 | tests/OscSendTests -- examples of how to send messages |
|---|
| | 35 | tests/OscReceiveTest -- example of how to receive the messages sent by OSCSendTests |
|---|
| | 36 | examples/OscDump -- a program that prints received OSC packets |
|---|
| | 37 | |
|---|
| | 38 | |
|---|
| | 39 | |
|---|
| | 40 | Building |
|---|
| | 41 | -------- |
|---|
| | 42 | |
|---|
| | 43 | In general the idea is that you will embed this source code in your projects as you |
|---|
| | 44 | see fit. The Makefile has an install rule for building a shared library and |
|---|
| | 45 | installing headers in usr/local. |
|---|
| | 46 | |
|---|
| | 47 | The Makefile works for Linux and MaxOS X except that if you are on a big endian |
|---|
| | 48 | machine such as PowerPC Macintosh you need to edit the line which sets the |
|---|
| | 49 | endianness to OSC_HOST_BIG_ENDIAN (see the makefile comment for details) or it won't |
|---|
| | 50 | work. If you want to build and install liboscpack as a library on OS X you also need |
|---|
| | 51 | to edit the $(LIBFILENAME) rule by commenting out the Linux case and uncommenting |
|---|
| | 52 | the OS X case since OS X uses different gcc flags for shared libraries. |
|---|
| | 53 | |
|---|
| | 54 | On Windows there is a batch file for doing a simple test build with MinGW gcc called |
|---|
| | 55 | make.MinGW32.bat. This will build the test executables and oscdump in ./bin and run |
|---|
| | 56 | the unit tests. |
|---|
| | 57 | |
|---|
| | 58 | -- |
|---|
| | 59 | |
|---|