My workspace is a bit untypical. The root directory is not a git repo, but provides commands to automate git clone and make several interdependent projects with specified branch name of the repo of these projects.
For instance, when Imake ProjectC, which depends on ProjectA and ProjectB, the root repo will perform git clone and set proper CMAKE_PREFIX_PATH to compile ProjectC. However, the cloned ProjectA/B/C are not really submodules to the root repo.
At the moment, this plugins does not work in my workspace as it relies on .git and .gitmodules if I understand it correctly. I'm wondering if it's possible to make it also work for my case?
My workspace is a bit untypical. The root directory is not a git repo, but provides commands to automate
git cloneandmakeseveral interdependent projects with specified branch name of the repo of these projects.For instance, when I
makeProjectC, which depends on ProjectA and ProjectB, the root repo will performgit cloneand set properCMAKE_PREFIX_PATHto compile ProjectC. However, the cloned ProjectA/B/C are not really submodules to the root repo.At the moment, this plugins does not work in my workspace as it relies on
.gitand.gitmodulesif I understand it correctly. I'm wondering if it's possible to make it also work for my case?