cine-io / cineio-broadcast-ios

The cine.io iOS Broadcast SDK
https://www.cine.io/products/broadcast
MIT License
129 stars 36 forks source link

Project does not build with use_frameworks! in Podfile #6

Closed evermeer closed 7 years ago

evermeer commented 9 years ago

In my project I am using various Swif libraries. Because of that I have to add use_frameworks! to my Podfile. When doing that, I first got the error that VCSimleSession.h could not be found. I could solve this In CineBroadcasterProtocol.h by changing:

import <videocore/api/iOS/VCSimpleSession.h>

In:

import <videocore/VCSimpleSession.h>

After that I get an error iostream file not found for the #include in VideoCore\AudioMixer.h This looks related to: http://stackoverflow.com/questions/29501154/cocoapods-spec-that-uses-c-and-compiles-as-a-framework

martint028 commented 7 years ago

how to solve it?

cprovatas commented 6 years ago

@evermeer How did you solve?