From 82241f05ca64322ba1835dcde900b7fdc260792d Mon Sep 17 00:00:00 2001 From: vladlosev Date: Tue, 2 Dec 2008 05:21:36 +0000 Subject: [PATCH] Edited wiki page through web user interface. --- wiki/GoogleTestXcodeGuide.wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/GoogleTestXcodeGuide.wiki b/wiki/GoogleTestXcodeGuide.wiki index d3c13e60..ef2d10bc 100644 --- a/wiki/GoogleTestXcodeGuide.wiki +++ b/wiki/GoogleTestXcodeGuide.wiki @@ -14,7 +14,7 @@ Here is the quick guide for using Google Test in your Xcode project. # Create a new "Shell Tool" target in your Xcode project called something like "!UnitTests" # Add the gtest.framework to your project and add it to the "Link Binary with Libraries" build phase of "!UnitTests" # Add your unit test source code to the "Compile Sources" build phase of "!UnitTests" - # Edit the "!UnitTests" exectable and add an environment variable named "DYLD_FRAMEWORK_PATH" with a value equal to the path to the framework containing the gtest.framework relative to the compiled executable. + # Edit the "!UnitTests" executable and add an environment variable named "DYLD_FRAMEWORK_PATH" with a value equal to the path to the framework containing the gtest.framework relative to the compiled executable. # Build and Go The following sections further explain each of the steps listed above in depth, describing in more detail how to complete it including some variations.