mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-14 19:01:35 +03:00
17 lines
489 B
Markdown
17 lines
489 B
Markdown
# 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`
|