Merge pull request #292 from ignazioc/features/add_xctool

Added page for xctool
waldyrious/alt-syntax
Ruben Vereecken 2015-08-23 23:52:36 +02:00
commit caa4146074
2 changed files with 16 additions and 1 deletions

File diff suppressed because one or more lines are too long

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

@ -0,0 +1,15 @@
# 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`