mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-22 04:51:13 +00:00
Update cheatsheets
This commit is contained in:
21
osx/xcodebuild
Normal file
21
osx/xcodebuild
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, osx]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# xcodebuild
|
||||
|
||||
> Build Xcode projects.
|
||||
> More information: <https://developer.apple.com/library/archive/technotes/tn2339/_index.html>.
|
||||
|
||||
- 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`
|
||||
Reference in New Issue
Block a user