I am distributing my Mac + Windows screensaver ( http://starmessagesoftware.com/moonscreensaver/ ) outside the apple store and I want to also distribute from the apple store. The screen saver is writen mainly in C++.
Outside the apple store I have three editions 1) free 10 days trial 2) free, special edition 3) commercial (paid) edition
In the app store I will have two editions 4) free 5) paid
The differences between the editions are different code-signing settings, different appIDs, appNames and bundleIDs (for (4) and (5)) and some different #defines.
I am thinking of having only one xcode project, with 5 targets and maybe 5 schemes, one to each target.
In xcode7 there is also a "products" group in the left navigation. I assume this is the same term as "targets" that Apple forgot to rename and keep it consistent accross the UI. So I am not bringing-in "products" as another dimension for this solution.
Please let me know what would be the optimal way to organise this xcode project.
My goal is to be able to produce all editions together, easily and with minimum manual changes (e.g. avoid changing a #define to produce the next edition).
Many thanks