Hi guys,
I'm trying to automate our KIF tests - they work fine from within the XCode project. We're using XCode 4.3.
My RunKIF.sh scripts looks something like this:
##
killall "iPhone Simulator"
xcodebuild -target "UI Tests" -configuration Release -sdk iphonesimulator build
OUT_FILE=/tmp/KIF-$$.out
/tmp/waxsim -f "ipad" "/Users/lborges/tw-projects/ios/Zeus/build/Release-iphonesimulator/Zeus_iPad (UI Tests).app" > $OUT_FILE 2>&1
##
The problem is on the line which starts with 'xcodebuild'.
When that line runs, I get this error:
ld: library not found for -lKIF
While promising, it did not help. Adding KIF as a Target dependency did nothing.
Anything I could be missing here?
Thanks,
Leo.