diff options
Diffstat (limited to 'xcode/Config')
-rw-r--r-- | xcode/Config/FrameworkTarget.xcconfig | 4 | ||||
-rw-r--r-- | xcode/Config/StaticLibraryTarget.xcconfig | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/xcode/Config/FrameworkTarget.xcconfig b/xcode/Config/FrameworkTarget.xcconfig index 3deadcdb..357b1c8f 100644 --- a/xcode/Config/FrameworkTarget.xcconfig +++ b/xcode/Config/FrameworkTarget.xcconfig @@ -13,5 +13,5 @@ GCC_DYNAMIC_NO_PIC = NO // Dynamic libs should not have their external symbols stripped. STRIP_STYLE = non-global -// Installation Directory -INSTALL_PATH = @loader_path/../Frameworks +// Let the user install by specifying the $DSTROOT with xcodebuild +SKIP_INSTALL = NO diff --git a/xcode/Config/StaticLibraryTarget.xcconfig b/xcode/Config/StaticLibraryTarget.xcconfig index 67f840ad..3922fa51 100644 --- a/xcode/Config/StaticLibraryTarget.xcconfig +++ b/xcode/Config/StaticLibraryTarget.xcconfig @@ -13,3 +13,6 @@ GCC_DYNAMIC_NO_PIC = NO // Static libs should not have their internal globals or external symbols // stripped. STRIP_STYLE = debugging + +// Let the user install by specifying the $DSTROOT with xcodebuild +SKIP_INSTALL = NO |