From d254052f7fe697d0acb8a746d73596bebd4302ca Mon Sep 17 00:00:00 2001 From: Don Huff Date: Fri, 11 Mar 2016 07:58:27 -0600 Subject: [PATCH] Update C++ language and library settings to match SDK projects. --- .gitignore | 1 + googletest/xcode/gtest.xcodeproj/project.pbxproj | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index ce310bc3..74e7466a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ # Ignore CI build directory build/ +xcuserdata diff --git a/googletest/xcode/gtest.xcodeproj/project.pbxproj b/googletest/xcode/gtest.xcodeproj/project.pbxproj index 89889b40..003bff8c 100644 --- a/googletest/xcode/gtest.xcodeproj/project.pbxproj +++ b/googletest/xcode/gtest.xcodeproj/project.pbxproj @@ -1067,6 +1067,9 @@ isa = XCBuildConfiguration; baseConfigurationReference = 40D4CDF10E30E07400294801 /* DebugProject.xcconfig */; buildSettings = { + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + MACOSX_DEPLOYMENT_TARGET = 10.7; }; name = Debug; }; @@ -1074,6 +1077,9 @@ isa = XCBuildConfiguration; baseConfigurationReference = 40D4CDF40E30E07400294801 /* ReleaseProject.xcconfig */; buildSettings = { + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + MACOSX_DEPLOYMENT_TARGET = 10.7; }; name = Release; };