Let me start off by saying that this is a PhoneGap/Cordova project using Xcode 4.3 and will soon be built for Android. Because of this, having all the HTML5+ resources in a /www folder is important.
Let's say I have the following file structure for a single target:
/www/index.html # common
/www/images/logo.png # unique
/www/css/base.css # common
/www/css/branding.css # unique
/www/js/jquery.js # common
/www/js/app.js # common
/www/js/localjson.js # unique
In reality there are a lot more files than that but that illustrates the challenge. Here are the things to note:
- Going for DRY code
- Single directories contain both common and unique files
- Directory structure must be maintained
- Multiple (dozens of) targets
- Hoping to avoid symlinking which will cause difficulties with git, OS X, and Xcode clarity.
How would you achieve this?