tldr/pages/osx/xctool.md

16 lines
430 B
Markdown
Raw Normal View History

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