<div dir="ltr"><div dir="ltr"><div dir="ltr">Wow, how did I miss that when I was looking through the page yesterday? That's exactly what I need ; )<div><br></div><div>I may try going one step further and adding a flag <COMPONENT>_USE_CLONE=ON that will do the full checkout to a repos directory, initialize the repo to the target tag, and then set FETCHCONTENT_SOURCE_DIR_<COMPONENT> for the user. The former would only be done iff the repo doesn't already exist.</div></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jun 28, 2019 at 5:25 AM Craig Scott <<a href="mailto:craig.scott@crascit.com">craig.scott@crascit.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jun 28, 2019 at 12:18 PM Dustyn Blasig <<a href="mailto:dustyn@blasig.us" target="_blank">dustyn@blasig.us</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi All,<div><br></div><div>I'm attempting to replace our use of git submodules with FetchContent flows instead so we can pull pre-built packages if they already exist instead of buildings locally. </div><div><br></div><div>However, I need to support a flow similar to Git submodules where developers can edit a submodule and then rebuild the enclosing project incrementally. Things seem to work OK if I jump into the fetched source directories and check out branches, etc. However, even if I move the download and source/unpacked folders outside the build (binary) directory and then delete the build directory, rerunning CMake will blast away the unpacked source even if the last extraction was with the same checksummed download. I need to ensure a "clean" won't delete someones work in a submodule, which is one reason why Git makes it hard to uninit and remove submodules.</div><div><br></div><div>Is there a best practice for a flow like this that I can replicate?</div></div></blockquote><div><br></div><div>(Background info: I'm the creator of the FetchContent module)</div><div><br></div><div>If you want to be making changes to the sources, you should clone that repo manually and point the build at it rather than try to modify the one that the project downloads for you. You do this by setting the FETCHCONTENT_SOURCE_DIR_<someName> cache variable to override where the build should find the sources. Here's the relevant part from the FetchContent documentation:</div><div><br></div><div><dl><dt style="font-size:16px;color:rgb(68,68,68);font-family:sans-serif;text-align:justify"><code class="gmail-m_3211270051073256840gmail-docutils gmail-m_3211270051073256840gmail-literal gmail-m_3211270051073256840gmail-notranslate" style="background-color:rgb(236,240,243);padding:0px 1px;font-size:0.95em"><span class="gmail-m_3211270051073256840gmail-pre">FETCHCONTENT_SOURCE_DIR_<ucName></span></code></dt><dd style="font-size:16px;margin-top:3px;margin-bottom:10px;margin-left:30px;text-align:justify;line-height:20.8px;color:rgb(68,68,68);font-family:sans-serif">If this is set, no download or update steps are performed for the specified content and the <code class="gmail-m_3211270051073256840gmail-docutils gmail-m_3211270051073256840gmail-literal gmail-m_3211270051073256840gmail-notranslate" style="background-color:rgb(236,240,243);padding:0px 1px;font-size:0.95em"><span class="gmail-m_3211270051073256840gmail-pre"><lcName>_SOURCE_DIR</span></code> variable returned to the caller is pointed at this location. This gives developers a way to have a separate checkout of the content that they can modify freely without interference from the build. The build simply uses that existing source, but it still defines <code class="gmail-m_3211270051073256840gmail-docutils gmail-m_3211270051073256840gmail-literal gmail-m_3211270051073256840gmail-notranslate" style="background-color:rgb(236,240,243);padding:0px 1px;font-size:0.95em"><span class="gmail-m_3211270051073256840gmail-pre"><lcName>_BINARY_DIR</span></code> to point inside its own build area. Developers are strongly encouraged to use this mechanism rather than editing the sources populated in the default location, as changes to sources in the default location can be lost when content population details are changed by the project.<span style="color:rgb(34,34,34);font-family:Arial,Helvetica,sans-serif;font-size:small"> </span></dd></dl></div></div><div dir="ltr"><br></div><div>The thinking behind this is that the project will assume it is in control of the sources unless told otherwise. By setting the above cache variable, you are telling FetchContent that "I want to use my own sources instead of whatever you would normally use". Either FetchContent is in control or you are.</div><div><br></div><div>I use this feature a LOT. Let's say you're working on a project where you need to do some refactoring that requires changes in the top level project and in some of its dependencies. I will have the top level project cloned. I will also have separate manually cloned repos for those dependencies that I need to modify. When I run CMake on my top level project, I use FETCHCONTENT_SOURCE_DIR_<depName> to point the build at my local cloned repos. That makes the build use my local clones so I can modify the sources, change branches, etc. without fear of things being changed under my feet. When I'm done, I'll commit and push my changes in each of the local cloned repos, then I'll update the GIT_HASH details of those dependencies in my top level project. I delete the FETCHCONTENT_SOURCE_DIR_<...> variables from my CMake cache and re-run CMake (and build) to confirm that I've updated my dependency hashes correctly, then I commit and push my changes to the top level project.</div><div><br></div><div>I use this strategy with project hierarchies with 40+ dependencies that can be up to maybe 10 levels deep. I can pull out any dependency used anywhere in the hierarchy and work with my own local cloned repo without having to care about where in the project hierarchy that dependency is usually populated. Being able to easily and selectively switch between the project-controlled FetchContent-provided source or my own local cloned repo(s) is critical to being able to do this efficiently. If you look at the CMake cache variables in ccmake or cmake-gui, you will also see all the source directory overrides grouped together because the variable names all start with FETCHCONTENT_SOURCE_DIR (this is why I named the cache variables FetchContent creates this way instead of putting the dependency name at the front of the cache variable name). So you can quickly see for which dependencies you are currently using a local cloned repo instead of what the project normally uses.</div><div><br></div><div dir="ltr"><br></div>-- <br><div dir="ltr" class="gmail-m_3211270051073256840gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr">Craig Scott<br><div>Melbourne, Australia</div><div><a href="https://crascit.com" target="_blank">https://crascit.com</a><br></div><div><br></div><div>Get the hand-book for every CMake user: <a href="https://crascit.com/professional-cmake/" target="_blank">Professional CMake: A Practical Guide</a><br></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
</blockquote></div>