Skip to content

Latest commit

History

History
16 lines (9 loc) 路 489 Bytes

xctool.md

File metadata and controls

16 lines (9 loc) 路 489 Bytes

xctool

Tool for building Xcode projects. More information: 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