1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 15:02:09 +02:00
tldr/pages.es/osx/xcodebuild.md
2023-10-25 06:53:42 +05:30

530 B

xcodebuild

Construye proyectos Xcode. Más información: https://developer.apple.com/library/archive/technotes/tn2339/_index.html.

  • Construye espacio de trabajo:

xcodebuild -workspace {{nombre_del_espacio_de_trabajo.workspace}} -scheme {{nombre_scheme}} -configuration {{nombre_configuration}} clean build SYMROOT={{ruta_SYMROOT}}

  • Construye proyecto:

xcodebuild -target {{nombre_target}} -configuration {{nombre_configuration}} clean build SYMROOT={{ruta_SYMROOT}}

  • Muestra los SDKs:

xcodebuild -showsdks