Added page for xctool

This commit is contained in:
Ignazioc 2015-08-19 12:11:49 +02:00
parent 5d3143bbf5
commit da325c0ee8

15
pages/osx/xctool.md Normal file
View File

@ -0,0 +1,15 @@
# XCTool
> Tool for build Xcode projects
- Build a project that is part of a workspace
`xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} build`
- Build a single project without any workspace
`xctool.sh -project {{YourProject.xcodeproj}} -scheme {{YourScheme}} build`
- Clean, build and execute all the tests
`xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} clean build test`