1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 08:22:09 +02:00
tldr/pages/osx/xctool.md

15 lines
431 B
Markdown

# xctool
> Tool for building Xcode projects.
- 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`