Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. Going for DRY code
  2. Single directories contain both common and unique files
  3. Directory structure must be maintained
  4. Multiple (dozens of) targets
  5. Hoping to avoid symlinking which will cause difficulties with git, OS X, and Xcode clarity.

How would you achieve this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.