Skip to content

Commit

Permalink
Merge pull request futuretap#36 from NachoSoto/master
Browse files Browse the repository at this point in the history
Framework.xcconfig: setting APPLICATION_EXTENSION_API_ONLY to YES
  • Loading branch information
jspahrsummers committed Apr 14, 2015
2 parents 2e77204 + fe637f6 commit 813127f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Base/Targets/Framework.xcconfig
Expand Up @@ -24,3 +24,9 @@ PRODUCT_NAME = $(PROJECT_NAME)
INSTALL_PATH = @rpath
LD_DYLIB_INSTALL_NAME = @rpath/$(PRODUCT_NAME).$(WRAPPER_EXTENSION)/$(PRODUCT_NAME)
SKIP_INSTALL = YES

// Disallows use of APIs that are not available
// to app extensions and linking to frameworks
// that have not been built with this setting enabled.
APPLICATION_EXTENSION_API_ONLY = YES

6 changes: 6 additions & 0 deletions Base/Targets/StaticLibrary.xcconfig
Expand Up @@ -24,3 +24,9 @@ PUBLIC_HEADERS_FOLDER_PATH = include/$PRODUCT_NAME

// Don't include in an xcarchive
SKIP_INSTALL = YES

// Disallows use of APIs that are not available
// to app extensions and linking to frameworks
// that have not been built with this setting enabled.
APPLICATION_EXTENSION_API_ONLY = YES

0 comments on commit 813127f

Please sign in to comment.