Stefano Bonicatti
11/05/2019, 9:01 PMlibraries/cmake.
If you want to add a new library built from source, you would have to add that the list in the root CMakeLists.txt, then create a folder for it with the same name under libraries/cmake/source.
Lets say you create libraries/cmake/source/mynewlib, now you have to provide a way for the find_package to actually find your library; to do so you have to add a Findmynewlib.cmake under libraries/cmake/source/modules, where you specify how it has to be downloaded.
Right now we use git repositories and clone submodules, but technically you can retrieve the sources as you like, though you would also have to reproduce the "wirings" that importSourceSubmodule do.