Static libraries for the Socket.IO C++ client.
pod 'SocketIO-Client-CPP'
When publishing a new version you need to
- Update
Headers/** - Replace
libUniversalDebug.a - Replace
libUniversalRelease.a - Update
SocketIO-Client-CPP.podspec $ pod lib lint- Create a new tag on this repo
$ pod trunk push
Use the static libraries generated by following this example.
Create one for
- release iphoneos
- release simulator
- debug iphoneos
- debug simulator
Join the debug libraries and the release libraries with e.g.
libtool -static -o libUniversalRelease.a Release-iphoneos/libsioclient.a Release-iphonesimulator/libsioclient.a
libtool -static -o libUniversalDebug.a Debug-iphoneos/libsioclient.a Debug-iphonesimulator/libsioclient.a