mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 20:42:39 +00:00
22 lines
574 B
Plaintext
22 lines
574 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, osx]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# xctool
|
|
|
|
> Build Xcode projects.
|
|
> More information: <https://github.com/facebookarchive/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`
|