-
-
Notifications
You must be signed in to change notification settings - Fork 874
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parse-iOS-Dynamic builds a dynamic framework 🎉
- Adds bolts build script as the bolts dynamic support is not referenced yet - Uses external target to reuse the Parse Framework configuration
- Loading branch information
1 parent
2600a02
commit d7ff968
Showing
9 changed files
with
416 additions
and
75 deletions.
There are no files selected for viewing
9 changes: 5 additions & 4 deletions
9
Configurations/Bolts-iOS-module.xcconfig → Configurations/Bolts-iOS-dynamic.xcconfig
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,43 @@ | ||
// | ||
// Copyright (c) 2015-present, Parse, LLC. | ||
// All rights reserved. | ||
// | ||
// This source code is licensed under the BSD-style license found in the | ||
// LICENSE file in the root directory of this source tree. An additional grant | ||
// of patent rights can be found in the PATENTS file in the same directory. | ||
// | ||
|
||
PRODUCT_NAME = Parse | ||
IPHONEOS_DEPLOYMENT_TARGET = 8.0 | ||
// This silence a warning | ||
//MACOS_DEPLOYMENT_TARGET = 8.0 | ||
SDKROOT[sdk=macos*] = iphoneos | ||
SDKROOT[sdk=iphoneos*] = iphoneos | ||
SDKROOT[sdk=iphonesimulator*] = iphonesimulator | ||
MACH_O_TYPE = mh_dylib | ||
|
||
ENABLE_BITCODE = NO | ||
DEFINES_MODULE = YES | ||
|
||
SUPPORTED_PLATFORMS = iphonesimulator iphoneos | ||
|
||
VALID_ARCHS[sdk=iphoneos*] = arm64 armv7 armv7s | ||
VALID_ARCHS[sdk=iphonesimulator*] = i386 x86_64 | ||
|
||
ARCHS[sdk=iphoneos*] = arm64 armv7 armv7s | ||
ARCHS[sdk=iphonesimulator*] = i386 x86_64 | ||
|
||
FRAMEWORK_SEARCH_PATHS = $(PARSE_DIR)/build/ | ||
|
||
// Dynamic linking uses different default copy paths | ||
LD_RUNPATH_SEARCH_PATHS[sdk=iphoneos*] = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
LD_RUNPATH_SEARCH_PATHS[sdk=iphonesimulator*] = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
|
||
DYLIB_INSTALL_NAME_BASE = @rpath | ||
|
||
OTHER_LDFLAGS = $(inherited) '-dynamiclib' '-lsqlite3' | ||
CLANG_MODULES_AUTOLINK = YES | ||
|
||
ONLY_ACTIVE_ARCH = NO | ||
|
||
INFOPLIST_FILE = $(PROJECT_DIR)/$(PRODUCT_NAME)/Resources/Parse-iOS.Info.plist |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,3 @@ DEPENDENCIES | |
rake | ||
xcodeproj | ||
xcpretty | ||
|
||
BUNDLED WITH | ||
1.10.6 |
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
Oops, something went wrong.