-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from ishkawa/feature/unified-target
Update Result.framework and set deployment target watchOS 2.0 and tvOS 9.0 explicitly.
- Loading branch information
Showing
15 changed files
with
212 additions
and
591 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
100 changes: 0 additions & 100 deletions
100
APIKit.xcodeproj/xcshareddata/xcschemes/APIKit-Mac.xcscheme
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "antitypical/Result" ~> 1.0.0 | ||
github "antitypical/Result" ~> 1.0.1 |
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 +1 @@ | ||
github "AliSoftware/OHHTTPStubs" ~> 4.3.0 | ||
github "AliSoftware/OHHTTPStubs" ~> 4.6.0 |
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,2 +1,2 @@ | ||
github "AliSoftware/OHHTTPStubs" "4.6.0" | ||
github "antitypical/Result" "1.0.0" | ||
github "antitypical/Result" "1.0.1" |
Submodule Result
updated
5 files
+1 −0 | README.md | |
+4 −0 | Result.xcodeproj/project.pbxproj | |
+18 −4 | Result/Result.swift | |
+23 −0 | Result/ResultType.swift | |
+25 −1 | ResultTests/ResultTests.swift |
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,22 @@ | ||
COMBINE_HIDPI_IMAGES = YES | ||
DEFINES_MODULE = YES | ||
DYLIB_COMPATIBILITY_VERSION = 1 | ||
DYLIB_CURRENT_VERSION = 1 | ||
DYLIB_INSTALL_NAME_BASE = @rpath | ||
FRAMEWORK_VERSION = A | ||
INFOPLIST_FILE = APIKit/Info.plist | ||
PRODUCT_BUNDLE_IDENTIFIER = org.ishkawa.$(PRODUCT_NAME:rfc1034identifier) | ||
PRODUCT_NAME = $(PROJECT_NAME) | ||
SKIP_INSTALL = YES | ||
|
||
SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator watchos watchsimulator appletvos appletvsimulator | ||
TARGETED_DEVICE_FAMILY = 1,2,3,4 | ||
|
||
ENABLE_BITCODE[sdk=iphone*] = YES; | ||
ENABLE_BITCODE[sdk=watch*] = YES; | ||
ENABLE_BITCODE[sdk=appletv*] = YES; | ||
|
||
LD_RUNPATH_SEARCH_PATHS[sdk=macosx*] = $(inherited) @executable_path/../Frameworks @loader_path/../Frameworks | ||
LD_RUNPATH_SEARCH_PATHS[sdk=iphone*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks | ||
LD_RUNPATH_SEARCH_PATHS[sdk=watch*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks | ||
LD_RUNPATH_SEARCH_PATHS[sdk=appletv*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks |
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,31 @@ | ||
ALWAYS_SEARCH_USER_PATHS = NO | ||
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x | ||
CLANG_CXX_LIBRARY = libc++ | ||
CLANG_ENABLE_MODULES = YES | ||
CLANG_ENABLE_OBJC_ARC = YES | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES | ||
CLANG_WARN_BOOL_CONVERSION = YES | ||
CLANG_WARN_CONSTANT_CONVERSION = YES | ||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR | ||
CLANG_WARN_EMPTY_BODY = YES | ||
CLANG_WARN_ENUM_CONVERSION = YES | ||
CLANG_WARN_INT_CONVERSION = YES | ||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR | ||
CLANG_WARN_UNREACHABLE_CODE = YES | ||
CURRENT_PROJECT_VERSION = 1 | ||
ENABLE_STRICT_OBJC_MSGSEND = YES | ||
GCC_C_LANGUAGE_STANDARD = gnu99 | ||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES | ||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR | ||
GCC_WARN_UNDECLARED_SELECTOR = YES | ||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE | ||
GCC_WARN_UNUSED_FUNCTION = YES | ||
GCC_WARN_UNUSED_VARIABLE = YES | ||
VERSION_INFO_PREFIX = | ||
VERSIONING_SYSTEM = apple-generic | ||
|
||
CODE_SIGN_IDENTITY[sdk=iphoneos*] = iPhone Developer | ||
MACOSX_DEPLOYMENT_TARGET = 10.9 | ||
IPHONEOS_DEPLOYMENT_TARGET = 8.0 | ||
WATCHOS_DEPLOYMENT_TARGET = 2.0 | ||
TVOS_DEPLOYMENT_TARGET = 9.0 |
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,11 @@ | ||
#include "Base.xcconfig" | ||
|
||
COPY_PHASE_STRIP = NO | ||
ENABLE_TESTABILITY = YES | ||
GCC_DYNAMIC_NO_PIC = NO | ||
GCC_OPTIMIZATION_LEVEL = 0 | ||
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 $(inherited) | ||
GCC_SYMBOLS_PRIVATE_EXTERN = NO | ||
MTL_ENABLE_DEBUG_INFO = YES | ||
ONLY_ACTIVE_ARCH = YES | ||
SWIFT_OPTIMIZATION_LEVEL = -Onone |
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,7 @@ | ||
#include "Base.xcconfig" | ||
|
||
COPY_PHASE_STRIP = YES | ||
ENABLE_NS_ASSERTIONS = NO | ||
MTL_ENABLE_DEBUG_INFO = NO | ||
VALIDATE_PRODUCT = YES | ||
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym |
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,10 @@ | ||
COMBINE_HIDPI_IMAGES = YES | ||
INFOPLIST_FILE = APIKitTests/Info.plist | ||
PRODUCT_BUNDLE_IDENTIFIER = org.ishkawa.$(PRODUCT_NAME:rfc1034identifier) | ||
PRODUCT_NAME = $(PROJECT_NAME)Tests | ||
|
||
SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator appletvos appletvsimulator | ||
|
||
LD_RUNPATH_SEARCH_PATHS[sdk=macosx*] = $(inherited) @executable_path/../Frameworks @loader_path/../Frameworks | ||
LD_RUNPATH_SEARCH_PATHS[sdk=iphone*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks | ||
LD_RUNPATH_SEARCH_PATHS[sdk=appletv*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks |
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