1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 23:42:09 +02:00
tldr/pages/osx/xcodebuild.md
pixel 4e2c525e31
networksetup, port, xcode-select, xcodebuild: add more information links (#7754)
* port: more info
* xcodebuild: more info
* xcode-select: more info
* networksetup: more info
2022-02-14 09:13:29 +05:30

476 B

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