Search Results

11
votes
6answers
631 views

What is the best way to share Delphi source files among projects?

What is the best way to share Delphi source files among projects? Clarification: We want to use a single source file in multiple Delphi projects. We've been using our …
7
votes

What is the best way to share Delphi source files among projects?

Use Source Control System's File Sharing Feature Pro: Fast and easy to set up, if the SCM system supports it. Pro/Con: Each consumer project can independentl …
0
votes

What is the best way to share Delphi source files among projects?

Copy-on-compile Pro: File sharing can be managed file-by-file. Pro/Con: Each consumer project can independently affect compile-time. Con: Debugger w …
0
votes

What is the best way to share Delphi source files among projects?

Copy-Compile-Delete Pro: Only one official copy of each file, to edit. Pro: Debugger will not link to the temporary copy, since it has been deleted by debug- …
3
votes

What is the best way to share Delphi source files among projects?

Use a Library Project Pro: Only ever one copy of each file to potentially edit. Pro: Only one compile, for each source file. Less time to compile. …