34 lines
724 B
Plaintext
34 lines
724 B
Plaintext
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
// All rights reserved.
|
|
//
|
|
// This source code is licensed under the license found in the
|
|
// LICENSE file in the root directory of this source tree.
|
|
|
|
#include "../Common.xcconfig"
|
|
|
|
// Architectures
|
|
ONLY_ACTIVE_ARCH = NO
|
|
|
|
// Deployment
|
|
COPY_PHASE_STRIP = YES
|
|
STRIP_INSTALLED_PRODUCT = YES
|
|
STRIP_STYLE = non-global
|
|
DEAD_CODE_STRIPPING = YES
|
|
|
|
// Code Generation
|
|
GCC_OPTIMIZATION_LEVEL = s
|
|
|
|
// Preprocessor
|
|
GCC_PREPROCESSOR_DEFINITIONS = $(inherited)
|
|
|
|
// Swift Testability
|
|
ENABLE_TESTABILITY = YES
|
|
|
|
// Bitcode set to false for Xcode 13 builds. Can be removed when we build with Xcode 14.
|
|
ENABLE_BITCODE = NO
|
|
|
|
// MTL
|
|
MTL_ENABLE_DEBUG_INFO = NO
|
|
|
|
SWIFT_OPTIMIZATION_LEVEL = -O
|