**What is the best way to share Delphi source files among projects?**
As I’ve been investigating this question, I’ve considered a few different approaches, but I’d like to know what you’re doing and how you find your approach.
**Considerations:**
- Near-Term:
- What approach will be simplest to put in place?
- Long-Term:
- What approach will be simplest to use and maintain?
**Important Scenarios:**
- Code-time
- Adding a new sharing dependency should require explicit declaration, so that sharing is managed.
- Adding a new sharing dependency should still be relatively simple; it should not require a complicated process.
- One file which lists all of the project’s “imported” files (from externally) would be nice.
- Compile-time
- All projects should always build with the one current version (current as of the source sync state plus local edits).
- (Maintaining different versions in different locations should use file branching, which is not the topic, here.)
- Whether each project should be able to affect the shared file’s compilation with different compiler settings (including flags) is arguable.
- It’s arguably easier to maintain (i.e. long-term) source code that is always built consistently.
- It’s arguably easier to make maintenance fixes (i.e. short-term) if the scope of said changes can easily be restricted to one project.
- Debug-time
- The correct version of the source should automatically open.
- Editing the displayed source should affect the next build.
- We do not want to debug against a temporary copy of the source.
Thanks, in advance, for your feedback!
Mattias