There seems to be interest in exploring the affect of the recent common superbuild update on modelbuilder packages. I took an action item to evaluate this as a trivial step, but either I didn’t understand the task (most likely) or it is not trivial.
My understanding of the task is to build our current cmb-superbuild:master using the “previous” common-superbuild (before it was bumped on Jan 7).
Trying it on my own, I first needed to comment out the _superbuilder_check-up_to_date() function that is in the common superbuild.
After doing that, there is one cmake error that the sqlite project is missing. I can try cherry picking the common-superbuild, but I am not going to pull on that thread without some concurrence this is a good use of time.
So if anyone is interested in seeing me continue this effort, please confirm whether or not this is the right plan and/or suggest how to move ahead.
I hit the missing sqlite error in a customer’s build. You should be able to resolve it by adding Sql to the sub-package list in the find_package(Qt5 call.
The common-superbuild has a “menu” of projects that it knows how to build. Each superbuild itself picks from this “menu” and brings its own recipes too (this is the projects/ directory). This selection is made in superbuild_find_projects at the top-level. The projects variable contains a list of projects that are “known” in the superbuild. So the fix is to add sqlite to this list (because it is a known “menu item”, that’s all that’s needed).