Skip to content

Commit 7535178

Browse files
committed
SimonStewart (on behalf of Dharani): Include all third party libraries when linking using the latest iphone sdk
r9285
1 parent 2b3d7b5 commit 7535178

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

iphone/iWebDriver.xcodeproj/project.pbxproj

+10-2
Original file line numberDiff line numberDiff line change
@@ -768,8 +768,12 @@
768768
"\"$(SRCROOT)/iphoneos.sdk/usr/local/lib\"",
769769
"\"$(SRCROOT)/../CocoaHTTPServer/build/Debug\"",
770770
);
771-
OTHER_LDFLAGS = "-ObjC";
771+
OTHER_LDFLAGS = (
772+
"-all_load",
773+
"-ObjC",
774+
);
772775
PRODUCT_NAME = iWebDriver;
776+
SDKROOT = iphonesimulator4.0;
773777
SKIP_INSTALL = YES;
774778
};
775779
name = Debug;
@@ -788,8 +792,12 @@
788792
"\"$(SRCROOT)/iphoneos.sdk/usr/local/lib\"",
789793
"\"$(SRCROOT)/../CocoaHTTPServer/build/Debug\"",
790794
);
791-
OTHER_LDFLAGS = "-ObjC";
795+
OTHER_LDFLAGS = (
796+
"-all_load",
797+
"-ObjC",
798+
);
792799
PRODUCT_NAME = iWebDriver;
800+
SDKROOT = iphonesimulator4.0;
793801
SKIP_INSTALL = YES;
794802
};
795803
name = Release;

0 commit comments

Comments
 (0)