mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 17:17:57 +01:00
Merge pull request #292 from ignazioc/features/add_xctool
Added page for xctool
This commit is contained in:
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
15
pages/osx/xctool.md
Normal 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`
|
Loading…
Reference in a new issue