forked from DyKnow/SignalR-ObjC
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework xcodeproj and workspace to build Frameworks instead of static …
…libraries
- Loading branch information
Alex Billingsley
committed
Feb 23, 2016
1 parent
4dac846
commit e5ce186
Showing
26 changed files
with
566 additions
and
1,706 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
framework module SignalR { | ||
umbrella header "SignalR.h" | ||
export * | ||
module * { export * } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,26 @@ | ||
xcodeproj 'SignalR.Client.ObjC/SignalR.Client.ObjC' | ||
workspace 'SignalR.Client.ObjC' | ||
|
||
target :"SignalR.Client.iOS", :exclusive => true do | ||
platform :ios, '7.0' | ||
pod 'AFNetworking', '2.6.3' | ||
pod 'SocketRocket', '0.4.2' | ||
target "SignalR.Client.iOS" do | ||
use_frameworks! | ||
platform :ios, '8.0' | ||
|
||
pod 'AFNetworking', '2.6.3' | ||
pod 'SocketRocket', '0.4.2' | ||
|
||
target "SignalR.Client.iOSTests" do | ||
pod 'OCMock' | ||
end | ||
end | ||
|
||
target :"SignalR.Client.OSX", :exclusive => true do | ||
platform :osx, '10.9' | ||
pod 'AFNetworking', '2.6.3' | ||
pod 'SocketRocket', '0.4.2' | ||
end | ||
|
||
target :"SignalR.Client.Tests.OSX", :exclusive => true do | ||
target :"SignalR.Client.OSX" do | ||
use_frameworks! | ||
platform :osx, '10.9' | ||
pod 'OCMock' | ||
end | ||
|
||
target :"SignalR.Client.Tests.iOS", :exclusive => true do | ||
platform :ios, '7.0' | ||
pod 'OCMock' | ||
end | ||
|
||
|
||
target :"SignalR.Samples.iOS", :exclusive => true do | ||
platform :ios, '7.0' | ||
end | ||
|
||
|
||
target :"SignalR.Samples.OSX", :exclusive => true do | ||
platform :osx, '10.9' | ||
end | ||
|
||
pod 'AFNetworking', '2.6.3' | ||
pod 'SocketRocket', '0.4.2' | ||
|
||
target :"SignalR.Client.OSXTests" do | ||
pod 'OCMock' | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ Pod::Spec.new do |s| | |
s.homepage = "https://github.com/DyKnow/SignalR-ObjC" | ||
s.license = 'MIT' | ||
s.author = { "Alex Billingsley" => "[email protected]" } | ||
s.source = { :git => 'https://github.com/DyKnow/SignalR-ObjC.git', :tag => '2.0.1' } | ||
s.ios.deployment_target = '7.0' | ||
s.source = { :git => 'https://github.com/DyKnow/SignalR-ObjC.git', :tag => '2.0.0.beta5' } | ||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.9' | ||
s.requires_arc = true | ||
|
||
|
8 changes: 0 additions & 8 deletions
8
SignalR.Client.ObjC/SignalR.Client.OSX/SignalR.Client.OSX-Prefix.pch
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
SignalR.Client.ObjC/SignalR.Client.OSX/SignalR_Client_OSX.h
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
SignalR.Client.ObjC/SignalR.Client.OSX/SignalR_Client_OSX.m
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.