2

I get the following warnings when I install quick and nimble in xcode 7

Directory not found for option '-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'

Directory not found for option '-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'

There was an issue open on this, but it seems like it was resolved, so I am guessing I am doing something else wrong.

There is also this SO question but the answers there suggest removing the framework search path, which I have something for google maps added to that and I get other errors when I delete that entry.

Any other ideas?

Here is my podfile:

platform :ios  , '8.0'
use_frameworks!

target 'OurLatitude' do
  pod 'AlamofireObjectMapper', '~> 0.9'
  pod 'DateTools'
  pod 'GoogleMaps'
  pod 'Google/CloudMessaging'
  pod 'SDWebImage', '~>3.7'
  pod 'SDWebImage/MapKit', '~>3.7'
end


target 'OurLatitudeTests' do
  pod 'Quick', '~> 0.6.0'
  pod 'Nimble', '2.0.0-rc.3'
  pod 'AlamofireObjectMapper', '~> 0.9'
  pod 'DateTools'
  pod 'GoogleMaps'
  pod 'Google/CloudMessaging'
  pod 'SDWebImage', '~>3.7'
  pod 'SDWebImage/MapKit', '~>3.7'
end
Community
  • 1
  • 1
nPn
  • 16,254
  • 9
  • 35
  • 58

1 Answers1

0

It seems that the issue has been resolved only very recently and hasn't made it into a release yet. I guess we'll just have to patient :)

  • I guess I should have looked closer at the comments in the issue. If I point to master on nimble the warning goes away, I think the issue is still open on quick and it has not been resolved for quick yet (I still get the warning when I point to the swift-2.0 or master branch for quick) – nPn Sep 22 '15 at 13:41