Blame googletest/xcode/Config/StaticLibraryTarget.xcconfig

Packit bd1cd8
//
Packit bd1cd8
//  StaticLibraryTarget.xcconfig
Packit bd1cd8
//
Packit bd1cd8
//  These are static library target settings for libgtest.a. It
Packit bd1cd8
//  is set in the "Based On:" dropdown in the "Target" info dialog.
Packit bd1cd8
//  This file is based on the Xcode Configuration files in:
Packit bd1cd8
//  http://code.google.com/p/google-toolbox-for-mac/
Packit bd1cd8
// 
Packit bd1cd8
Packit bd1cd8
// Static libs can be included in bundles so make them position independent
Packit bd1cd8
GCC_DYNAMIC_NO_PIC = NO
Packit bd1cd8
Packit bd1cd8
// Static libs should not have their internal globals or external symbols
Packit bd1cd8
// stripped.
Packit bd1cd8
STRIP_STYLE = debugging
Packit bd1cd8
Packit bd1cd8
// Let the user install by specifying the $DSTROOT with xcodebuild
Packit bd1cd8
SKIP_INSTALL = NO