Skip to content

Commit

Permalink
Add HomeKit extension; Tag 6.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Aug 22, 2018
1 parent c3f6bdc commit f7e4db8
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/PromiseKit.podspec
Expand Up @@ -151,7 +151,16 @@ Pod::Spec.new do |s|
ss.watchos.deployment_target = '2.0' ss.watchos.deployment_target = '2.0'
ss.tvos.deployment_target = '9.0' ss.tvos.deployment_target = '9.0'
end end


s.subspec 'HomeKit' do |ss|
ss.source_files = Dir['Extensions/HomeKit/Sources/*']
ss.dependency 'PromiseKit/CorePromise'
ss.frameworks = 'HomeKit'
ss.ios.deployment_target = '8.0'
ss.watchos.deployment_target = '3.0'
ss.tvos.deployment_target = '9.0'
end

s.subspec 'MapKit' do |ss| s.subspec 'MapKit' do |ss|
ss.ios.source_files = ss.osx.source_files = ss.tvos.source_files = 'Extensions/MapKit/Sources/*' ss.ios.source_files = ss.osx.source_files = ss.tvos.source_files = 'Extensions/MapKit/Sources/*'
ss.ios.frameworks = ss.osx.frameworks = ss.tvos.frameworks = 'MapKit' ss.ios.frameworks = ss.osx.frameworks = ss.tvos.frameworks = 'MapKit'
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Expand Up @@ -61,3 +61,6 @@
[submodule "Extensions/AVFoundation"] [submodule "Extensions/AVFoundation"]
path = Extensions/AVFoundation path = Extensions/AVFoundation
url = https://github.com/PromiseKit/AVFoundation url = https://github.com/PromiseKit/AVFoundation
[submodule "Extensions/HomeKit"]
path = Extensions/HomeKit
url = https://github.com/PromiseKit/HomeKit.git
1 change: 1 addition & 0 deletions Extensions/HomeKit
Submodule HomeKit added at 56f0fe
4 changes: 2 additions & 2 deletions PromiseKit.xcodeproj/project.pbxproj
Expand Up @@ -933,7 +933,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO; COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 6.3.5; CURRENT_PROJECT_VERSION = 6.4.0;
DEBUG_INFORMATION_FORMAT = dwarf; DEBUG_INFORMATION_FORMAT = dwarf;
DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1; DYLIB_CURRENT_VERSION = 1;
Expand Down Expand Up @@ -994,7 +994,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO; COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 6.3.5; CURRENT_PROJECT_VERSION = 6.4.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1; DYLIB_CURRENT_VERSION = 1;
Expand Down

0 comments on commit f7e4db8

Please sign in to comment.