mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
15 lines
434 B
Markdown
15 lines
434 B
Markdown
# XCTool
|
|
|
|
> Tool for building Xcode projects.
|
|
|
|
- Build a single project without any workspace:
|
|
|
|
`xctool.sh -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`
|