You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
352 B

#!/usr/bin/env bash
ESCAPEDSRCROOT="$(pwd | sed 's/\//\\\//g')";
mkdir -p xcode;
cd xcode &&
cmake -G Xcode .. &&
echo "$ 's/$ESCAPEDSRCROOT/\${SRCROOT}/g'" && #remove personally identifying info of proj generator
LC_CTYPE=C LANG=C find TEST.xcodeproj -type f -print0 -exec sed -i "" 's/'"$ESCAPEDSRCROOT"'/${SRCROOT}/g' {} + &&
echo "" #newline