Hi,
Is there a way to use the same namespace accross multiple packages, like:
find_package(prog_extA)
find_package(prog_extB)
target_link_librairies(target PUBLIC prog::extA prog::extB)
Or even, register multiple packages in the same “meta”-package, like:
find_package(prog)
target_link_librairies(target PUBLIC prog::extA prog::extB)
But without the use of the component mechanism, which would require that all extensions are handled in the same CMake project. My goal is to be able to build sub-packages in fully independant CMake projects. And from my understanding, it is not possible with the component mechanism(?)
Thanks.