When I create my own library target with add_library, it has an ALIAS option. However, I cannot find similar for libraries imported via find_package.
In my case, I import OpenMP with
find_package(OpenMP COMPONENTS CXX REQUIRED)
and then link it with my library as
target_link_libraries(myLib PRIVATE OpenMP::OpenMP_CXX)
When I generate the dependency graph among the CMake targets, it appears as OpenMP::OpenMP_CXX. This is verbose, I would like OpenMP to appear as OpenMP in the graph. Is it possible?