4 years ago I converted the program I work on to use External_Project to build prerequisites for the main code.
It uses the “SuperBuild then Build” pattern where all the prerequisites are built out of one main CMakeLists.txt, which then calls a sub-build for the application proper.
I haven’t been following the latest features in CMake that might make this process more streamlined and intuitive. So my question is what are these features and are there good examples of how to put them to use?
Thanks!