I have a codebase that is x-platform. I manage most build related mechanics with CMake, allowing me to work on the same content when working in linux or windows (VisualStudio).
However, I do also compile the codebase using borland tools. The borland IDE uses .cbproj files to handle a project.
Within the codebase there are hundreds of small subprojects, meaning hundreds of cbproj files.
Question is, is it possible to setup a repository with a develop branch, containing all common files for the code base and another branch, say borland_develop, that reflect(kept synced with) the develop branch, but in addition contain the extra cbproj files??
Goal is to be able to automatically merge the borland_develop into develop, without having to pay extra attention to the cbproj files.