Files
tldr/pages/osx/xctool.md
2019-04-12 11:35:50 -03:00

481 B

xctool

Tool for building Xcode projects. Homepage: https://github.com/facebook/xctool.

  • Build a single project without any workspace:

xctool -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