Skip to content

Instantly share code, notes, and snippets.

@danielpetroianu
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielpetroianu/f2df142de7ca3ab7b1f8 to your computer and use it in GitHub Desktop.
Save danielpetroianu/f2df142de7ca3ab7b1f8 to your computer and use it in GitHub Desktop.
if [ ${CONFIGURATION} == "Release" ]; then
APPLEDOC_PATH=`which appledoc`
if [ $APPLEDOC_PATH ]; then
$APPLEDOC_PATH \
--project-name ${PRODUCT_NAME} \
--project-company "<Your Name>" \
--company-id "<com.yourcompany>" \
--output ${PRODUCT_NAME}Docs \
--keep-undocumented-objects \
--keep-undocumented-members \
--keep-intermediate-files \
--no-repeat-first-par \
--no-warn-invalid-crossref \
--exit-threshold 2 \
${PROJECT_DIR}/${PRODUCT_NAME}
fi;
fi;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment