Skip to content

Commit c543110

Browse files
committed
Disables generation of code coverage data for release mode and adds build time profiler for debug builds.
1 parent 3750d6b commit c543110

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Rx.xcodeproj/project.pbxproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5713,6 +5713,7 @@
57135713
APPLICATION_EXTENSION_API_ONLY = YES;
57145714
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
57155715
CLANG_CXX_LIBRARY = "libc++";
5716+
CLANG_ENABLE_CODE_COVERAGE = NO;
57165717
CLANG_ENABLE_MODULES = YES;
57175718
CLANG_ENABLE_OBJC_ARC = YES;
57185719
CLANG_WARN_BOOL_CONVERSION = YES;
@@ -6155,7 +6156,7 @@
61556156
MACOSX_DEPLOYMENT_TARGET = 10.10;
61566157
MTL_ENABLE_DEBUG_INFO = YES;
61576158
ONLY_ACTIVE_ARCH = YES;
6158-
OTHER_SWIFT_FLAGS = "-D TRACE_RESOURCES -D DEBUG";
6159+
OTHER_SWIFT_FLAGS = "-D TRACE_RESOURCES -D DEBUG -Xfrontend -debug-time-function-bodies";
61596160
SDKROOT = "";
61606161
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
61616162
SWIFT_VERSION = 3.0;
@@ -6174,6 +6175,7 @@
61746175
APPLICATION_EXTENSION_API_ONLY = YES;
61756176
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
61766177
CLANG_CXX_LIBRARY = "libc++";
6178+
CLANG_ENABLE_CODE_COVERAGE = NO;
61776179
CLANG_ENABLE_MODULES = YES;
61786180
CLANG_ENABLE_OBJC_ARC = YES;
61796181
CLANG_WARN_BOOL_CONVERSION = YES;

0 commit comments

Comments
 (0)