1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 18:45:59 +02:00
tldr/pages/osx/xctool.md

16 lines
434 B
Markdown
Raw Normal View History

2015-08-19 12:11:49 +02:00
# XCTool
> Tool for building Xcode projects.
2015-08-19 12:11:49 +02:00
- Build a single project without any workspace:
2015-08-19 12:11:49 +02:00
`xctool.sh -project {{YourProject.xcodeproj}} -scheme {{YourScheme}} build`
- Build a project that is part of a workspace:
2015-08-20 06:59:07 +02:00
`xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} build`
- Clean, build and execute all the tests:
2015-08-19 12:11:49 +02:00
`xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} clean build test`