1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 09:17:57 +01:00
tldr/pages/osx/xctool.md
2016-01-08 09:38:59 +01:00

434 B

XCTool

Tool for building Xcode projects.

  • Build a single project without any workspace:

xctool.sh -project {{YourProject.xcodeproj}} -scheme {{YourScheme}} build

  • Build a project that is part of a workspace:

xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} build

  • Clean, build and execute all the tests:

xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} clean build test