This is just a template I'm making to try to improve my OpenFrameworks workflow. It already has a .gitignore file in it (taken from here), so it's ready for proper version control, and it also contains some reminders of commands to run so that I don't have to run the whole XCode application just to compile the source files. (note: you still need to have XCode and XCode command line tools installed)
Hopefully in the future I'll add some shader templates and such.
Open the project generator (I have an alias in of/apps/myApps)
open -a projectGenerator
List all targets, build configurations, and schemes used in project
xcodebuild -list -project <your_project_name>.xcodeproj
Build a particular scheme
xcodebuild -scheme <your_scheme_name> build
XCode command line commands from here
After pulling from this repository, remove and replace the origin remote before I accidentally overwrite the template.
git remote rm origin