pantalla objective linea limpiar librerias for curso comandos anaya ios xcode build xcodebuild xcrun

objective - Limpiar el objetivo xcode de IOS en la línea de comando



xcode for ipad (1)

Desde la página de manual de xcodebuild:

xcodebuild [-project projectname] [-target targetname ...] [-configuration configurationname] [-sdk [sdkfullpath | sdkname]] [buildaction ...] [setting=value ...] [-userdefault=value ...]

y la acción de compilación podría tomar los siguientes valores:

buildaction ... Specify a build action (or actions) to perform on the target. Available build actions are: build Build the target in the build root (SYMROOT). This is the default build action. archive Archive a scheme from the build root (SYMROOT). This requires specifying a workspace and scheme. installsrc Copy the source of the project to the source root (SRCROOT). install Build the target and install it into the target''s installation directory in the distribution root (DSTROOT). clean Remove build products and intermediate files from the build root (SYMROOT).

En tu caso

xcodebuild -sdk "${TARGET_SDK}" -xcconfig "${CONFIG_FILE_PATH}" -configuration Release clean

Estoy compilando / ejecutando una aplicación IOS desde la línea de comandos con los siguientes comandos:

xcodebuild -sdk "${TARGET_SDK}" -xcconfig "${CONFIG_FILE_PATH}" -configuration Release /usr/bin/xcrun -sdk "${TARGET_SDK}" PackageApplication -v "${PROJECT_BUILD_DIR}/${APPLICATION_NAME}.app" -o "${OUTPUT_DIR}/${APPLICATION_NAME}.ipa"

¿Hay algún comando para limpiar los objetivos? o estos comandos se encargan de limpiarse ellos mismos.