-
Notifications
You must be signed in to change notification settings - Fork 221
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 #734 from Microsoft/develop
Release 0.12.0
- Loading branch information
Showing
751 changed files
with
30,392 additions
and
3,520 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
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,18 @@ | ||
#include "./Global.xcconfig" | ||
|
||
// :Mark: Architectures | ||
ONLY_ACTIVE_ARCH = YES | ||
|
||
// :Mark: Build Options | ||
DEBUG_INFORMATION_FORMAT = dwarf | ||
ENABLE_TESTABILITY = YES | ||
VALIDATE_PRODUCT = NO | ||
|
||
// :Mark: Apple LLVM 8.1 - Code Generation | ||
GCC_OPTIMIZATION_LEVEL = 0 | ||
|
||
// :Mark: Apple LLVM 8.1 - Preprocessing | ||
ENABLE_NS_ASSERTIONS = YES | ||
|
||
// :Mark: User-Defined | ||
MTL_ENABLE_DEBUG_INFO = YES |
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,18 @@ | ||
#include "./Global.xcconfig" | ||
|
||
// :Mark: Architectures | ||
ONLY_ACTIVE_ARCH = NO | ||
|
||
// :Mark: Build Options | ||
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym | ||
ENABLE_TESTABILITY = NO | ||
VALIDATE_PRODUCT = YES | ||
|
||
// :Mark: Apple LLVM 8.1 - Code Generation | ||
GCC_OPTIMIZATION_LEVEL = s | ||
|
||
// :Mark: Apple LLVM 8.1 - Preprocessing | ||
ENABLE_NS_ASSERTIONS = NO | ||
|
||
// :Mark: User-Defined | ||
MTL_ENABLE_DEBUG_INFO = NO |
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,9 @@ | ||
#include "./Tests.xcconfig" | ||
#include "./iOS.xcconfig" | ||
|
||
OTHER_LDFLAGS = $(inherited) -framework UIKit -ObjC -lsqlite3 -framework CrashReporter | ||
|
||
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks @loader_path/Frameworks "$(SRCROOT)/../Vendor/iOS/OCMock" "$(SRCROOT)/../Vendor/iOS/OCHamcrest" "$(SRCROOT)/../Vendor/iOS/OHHTTPStubs" | ||
|
||
// OCMock and OCHamcrest have a bunch of warnings so we just disable this only for testing. | ||
GCC_TREAT_WARNINGS_AS_ERRORS = NO |
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,9 @@ | ||
#include "./Tests.xcconfig" | ||
#include "./macOS.xcconfig" | ||
|
||
OTHER_LDFLAGS = $(inherited) -framework AppKit -ObjC -lsqlite3 | ||
|
||
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks @loader_path/Frameworks $(TOOLCHAIN_DIR)/usr/lib/swift/macosx "$(SRCROOT)/../Vendor/macOS/OCMock" "$(SRCROOT)/../Vendor/macOS/OCHamcrest" "$(SRCROOT)/../Vendor/macOS/OHHTTPStubs" | ||
|
||
// OCMock and OCHamcrest have a bunch of warnings so we just disable this only for testing. | ||
GCC_TREAT_WARNINGS_AS_ERRORS = NO |
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,13 @@ | ||
#include "./Tests.xcconfig" | ||
#include "./tvOS.xcconfig" | ||
|
||
OTHER_LDFLAGS = $(inherited) -framework UIKit -ObjC -lsqlite3 -framework CrashReporter | ||
|
||
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks @loader_path/Frameworks "$(SRCROOT)/../Vendor/tvOS/OCMock" "$(SRCROOT)/../Vendor/tvOS/OCHamcrest" "$(SRCROOT)/../Vendor/tvOS/OHHTTPStubs" | ||
|
||
// OCMock and OCHamcrest have a bunch of warnings so we just disable this only for testing. | ||
GCC_TREAT_WARNINGS_AS_ERRORS = NO | ||
|
||
// OCHTTPStubs for tvOS cannot generate code coverage data without these flags. | ||
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES | ||
DEFINES_MODULE = YES |
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,8 @@ | ||
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Vendor/$(MOBILECENTER_BUILD_PLATFORM)"/** | ||
HEADER_SEARCH_PATHS = "$(SRCROOT)/../Vendor/$(MOBILECENTER_BUILD_PLATFORM)"/** | ||
LIBRARY_SEARCH_PATHS = "$(SRCROOT)/../Vendor/$(MOBILECENTER_BUILD_PLATFORM)"/** | ||
|
||
APPLICATION_EXTENSION_API_ONLY = NO | ||
INFOPLIST_FILE = $(PROJECT_NAME)Tests/Info.plist | ||
|
||
OTHER_CFLAGS = $(inherited) -iframework "$(SRCROOT)/../Vendor/$(MOBILECENTER_BUILD_PLATFORM)/OCMock" -iframework "$(SRCROOT)/../Vendor/$(MOBILECENTER_BUILD_PLATFORM)/OCHamcrest" -iframework "$(SRCROOT)/../Vendor/$(MOBILECENTER_BUILD_PLATFORM)/OHHTTPStubs" -iframework "$(PLATFORM_DIR)/Developer/Library/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,9 @@ | ||
SDK_NAME = mobilecenter.ios | ||
SDKROOT = iphoneos | ||
ARCHS = armv7 armv7s arm64 | ||
ARCHS[sdk=iphonesimulator*] = $(MS_SIM_ARCHS) | ||
VALID_ARCHS = $(ARCHS) | ||
VALID_ARCHS[sdk=iphonesimulator*] = $(MS_SIM_ARCHS) | ||
SKIP_INSTALL = YES | ||
|
||
MOBILECENTER_BUILD_PLATFORM = iOS |
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 @@ | ||
SDK_NAME = mobilecenter.macos | ||
SDKROOT = macosx | ||
ARCHS = x86_64 | ||
VALID_ARCHS = $(ARCHS) i386 | ||
SKIP_INSTALL = YES | ||
|
||
MOBILECENTER_BUILD_PLATFORM = macOS |
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,9 @@ | ||
SDK_NAME = mobilecenter.tvos | ||
SDKROOT = appletvos | ||
ARCHS = arm64 | ||
ARCHS[sdk=appletvsimulator*] = $(MS_SIM_ARCHS) | ||
VALID_ARCHS = $(ARCHS) | ||
VALID_ARCHS[sdk=appletvsimulator*] = $(MS_SIM_ARCHS) | ||
SKIP_INSTALL = YES | ||
|
||
MOBILECENTER_BUILD_PLATFORM = tvOS |
Oops, something went wrong.