Closed kasperkronborg closed 11 years ago
When installing this through CocoaPods, the build fails with the error description above. That is because the modules for C and Objective-C hasn't been enabled. You can do that by adding spec.compiler_flags = "-fmodules" to your podspec file.
spec.compiler_flags = "-fmodules"
Thanks! I added it in.
https://github.com/cezarywojcik/CWPopup/commit/1b94211d74b17704ea8180be703c14bfdc12ac11
I'll push the new spec to the CocoaPods/Specs repo later today.
Merged to Specs.
https://github.com/CocoaPods/Specs/pull/4905
When installing this through CocoaPods, the build fails with the error description above. That is because the modules for C and Objective-C hasn't been enabled. You can do that by adding
spec.compiler_flags = "-fmodules"
to your podspec file.