mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-31 16:15:30 +02:00
Added page for xctool
This commit is contained in:
parent
5d3143bbf5
commit
da325c0ee8
1 changed files with 15 additions and 0 deletions
15
pages/osx/xctool.md
Normal file
15
pages/osx/xctool.md
Normal 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`
|
Loading…
Add table
Reference in a new issue