If you want to have 'clean' output with only libs and includes, then you have to modify build script. I'm not very good in writing scripts, but anyway - you may refer to this post and download already built libs with includes(link to zip in the last comment). The libs are fat
, so they contains i386
, x86_64
, armv7
, armv7s
and arm64
.
For adding everything into the Xcode project you have to specify OTHER_LDFLAGS
:
"$(SRCROOT)/<path to live555>/UsageEnvironment/libUsageEnvironment.a"
"$(SRCROOT)/<path to live555>/liveMedia/libliveMedia.a"
"$(SRCROOT)/<path to live555>/groupsock/libgroupsock.a"
"$(SRCROOT)/<path to live555>/BasicUsageEnvironment/libBasicUsageEnvironment.a"
and HEADER_SEARCH_PATH
:
"$(SRCROOT)/<path to live555>/UsageEnvironment/include"
"$(SRCROOT)/<path to live555>/liveMedia/include"
"$(SRCROOT)/<path to live555>/groupsock/include"
"$(SRCROOT)/<path to live555>/BasicUsageEnvironment/include"
And that is all. I hope it helps.