I am trying to run GHUnitTest cases from command line. Following all steps from Here
My GHUnitTest target name is GHUnitTests
. And I using following script on command line
default:
\# Set default make action here
\# xcodebuild -target GHUnitTests -configuration MyMainTarget -sdk iphonesimulator build
clean:
-rm -rf build/*
test: GHUNIT_CLI=1 xcodebuild -target GHUnitTests -configuration Debug -sdk iphonesimulator build`
Runnig it using $ make test
on terminal.
But getting the following error always.
make: * No rule to make target `test'. Stop.>
How to fix it. Plz help