Skip to content

Commit

Permalink
Merge pull request futuretap#17 from jspahrsummers/skip-install
Browse files Browse the repository at this point in the history
Add SKIP_INSTALL to auxiliary target types
  • Loading branch information
jspahrsummers committed Nov 8, 2013
2 parents 6e27c32 + 28ee3fa commit 9186fda
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Base/Targets/StaticLibrary.xcconfig
Expand Up @@ -26,3 +26,6 @@ PUBLIC_HEADERS_FOLDER_PATH = include/$PRODUCT_NAME
// library's own folder first. This avoids conflicts from other headers in the
// build folder.
USER_HEADER_SEARCH_PATHS = ./**

// Don't include in an xcarchive
SKIP_INSTALL = YES
3 changes: 3 additions & 0 deletions Mac OS X/Mac-DynamicLibrary.xcconfig
Expand Up @@ -13,3 +13,6 @@ DEAD_CODE_STRIPPING = NO
// Whether function calls should be position-dependent (should always be
// disabled for library code)
GCC_DYNAMIC_NO_PIC = NO

// Don't include in an xcarchive
SKIP_INSTALL = YES
1 change: 1 addition & 0 deletions Mac OS X/Mac-Framework.xcconfig
Expand Up @@ -19,6 +19,7 @@ GCC_DYNAMIC_NO_PIC = NO
// bundle (inside the "Frameworks" folder) or shared folder
INSTALL_PATH = @rpath
LD_DYLIB_INSTALL_NAME = @rpath/$(PRODUCT_NAME).$(WRAPPER_EXTENSION)/$(PRODUCT_NAME)
SKIP_INSTALL = YES

// When compiling this library, look for imports (written with quotes) in the
// library's own folder first. This avoids conflicts from other headers in the
Expand Down

0 comments on commit 9186fda

Please sign in to comment.