I am working on a C++ Xcode project. Let's say it PA.xcodeproj
. I am building its target targetA
using the command line:
xcodebuild -project PA.xcodeproj -target targetA
In targetA
, I have specified its dependency targetB
and targetB further depends on targetC
.
While running the above command, it builds targetB
but doesn't build targetC
.Is there anything wrong with the above command? I was guessing it should build targetC
as well as the targetB
depends on it.