Skip to content

Instantly share code, notes, and snippets.

@alexkent
Created July 17, 2014 13:50
Show Gist options
  • Save alexkent/3bf760e31d9afd2790cd to your computer and use it in GitHub Desktop.
Save alexkent/3bf760e31d9afd2790cd to your computer and use it in GitHub Desktop.
workspace 'Everything.xcworkspace'
platform :ios, "7.0"
xcodeproj './App/My App.xcodeproj'
xcodeproj './Framework1/Framework1.xcodeproj'
xcodeproj './Framework2/Framework2.xcodeproj'
#### Application
target "My App", :exclusive => true do
xcodeproj './App/My App.xcodeproj'
pod 'EDHexColor'
end
target "UnitTests", :exclusive => true do
xcodeproj './App/My App.xcodeproj'
end
target "ApplicationTests", :exclusive => true do
xcodeproj './App/My App.xcodeproj'
pod 'KIF', '~> 3.0'
end
#### Framework1
target "Framework1", :exclusive => true do
xcodeproj './Framework1/Framework1.xcodeproj'
end
target "Framework1Tests", :exclusive => true do
xcodeproj './Framework1/Framework1.xcodeproj'
end
#### Framework2
target "Framework2", :exclusive => true do
xcodeproj './Framework2/Framework2.xcodeproj'
end
target "Framework2Tests", :exclusive => true do
xcodeproj './Framework2/Framework2.xcodeproj'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment