Hi All,
I'm trying to create a binding for the iOS ORTC client (xRTML, http://www.xrtml.org/downloads). In itself, this shouldn't be too hard, as the download contains all the required files (*.a, *.h). The problem is that the iOS client depends on another library called SocketRocket (https://github.com/square/SocketRocket).
Someone already made a binding for this library (https://github.com/thefactory/SocketRocket-Sharp), which gives me access to the .a file for SocketRocket as well as a .dll.
The problem is that I don't see how I can use this. I've tried Objective Sharpie on just the header files for the iOS ORTC client, but it complains that it can't find the SocketRocket stuff. If I add the SocketRocket header files, it's happy and generates a bindings file, but it includes the bindings for the SocketRocket stuff (which I already had).
I've created a iOS Binding project and added the libOrtcClient.a file and the appropriate bindings, but it's not happy. I've tried adding the Socket Rocket DLL, but it doesn't seem to want to recognize it. I've tried adding the libSocketRocket.a file, but that doesn't seem to help either.
Any suggestions on how I could (preferably) use the Socket Rocket DLL in the ORTC client binding?
Any help would be greatly appreciated.
Robert