From 5097efb814ad50345e8fb7ef787c0308e36ba289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Tue, 24 Oct 2023 22:23:42 -0300 Subject: [PATCH] xcodebuild: add Spanish translation (#11214) --- pages.es/osx/xcodebuild.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages.es/osx/xcodebuild.md diff --git a/pages.es/osx/xcodebuild.md b/pages.es/osx/xcodebuild.md new file mode 100644 index 000000000..2759b95d7 --- /dev/null +++ b/pages.es/osx/xcodebuild.md @@ -0,0 +1,16 @@ +# xcodebuild + +> Construye proyectos Xcode. +> Más información: . + +- 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`