Skip to content

Instantly share code, notes, and snippets.

@dimitre
Created June 24, 2017 23:05
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 dimitre/a02d40b5f07e42b003714772130e6613 to your computer and use it in GitHub Desktop.
Save dimitre/a02d40b5f07e42b003714772130e6613 to your computer and use it in GitHub Desktop.
Command to generate XCODE examples for OpenFrameworks addons
#!/bin/bash
set -x
cd `dirname $0`
for d in */ ; do
echo "$d"
cd "$d"
/Volumes/ofw/of_v0.9.8_osx_release/apps/projectGenerator/commandLine/bin/projectGenerator -o"../../../" .
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment