1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

xcodebuild.md: add page (#1008)

* Create xcodebuild.md

xcodebuild

* xcodebuild.md: shorten page

* xcodebuild.md: use token formatting

* xcodebuild.md: remove xcrun command

* xcodebuild.md: fix linting and reword some descriptions

* xcodebuild: change tokens to match the guidelines

* xcodebuild: remove unclear part the first example's description
This commit is contained in:
Waldir Pimenta 2016-08-21 11:59:23 +01:00 committed by Leandro Ostera
parent e42a45fba9
commit 04f25d3684

15
pages/osx/xcodebuild.md Normal file
View file

@ -0,0 +1,15 @@
# xcodebuild
> Build Xcode projects.
- Build workspace:
`xcodebuild -workspace {{workspace_name.workspace}} -scheme {{scheme_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}`
- Build project:
`xcodebuild -target {{target_name}} -configuration {{configuration_name}} clean build SYMROOT={{SYMROOT_path}}`
- Show SDKs:
`xcodebuild -showsdks`