Multiple command line tool targets in a single project in Xcode -
is possible have multiple command line tool targets in single project? i'm writing c++ command line tool, , build first target failed second one.
i'm using xcode 4.1, mac 10.7.4.
you can have multiple targets , build each of them xcode commandline tools. can specify target command line tool like:
xcodebuild -sdk iphonesimulator6.0 -target "helloworld" and can repeat each target. came across building workspaces direclty can check out too.
apple's document it;
if have multiple projects in directory need use -project indicate project should built. default, xcodebuild builds first target listed in project, default build configuration. order of targets property of project , same users of project.
Comments
Post a Comment