You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In CMake, the find_package(ryml) command defines the target ryml::ryml, which is (afaik) the expected format for an imported target. It is good practice to make the library accessible with this name regardless of the method that was used to create the target, so that downstream CMake code does not need to worry about how the target was created/imported; the name should always be ryml::ryml.
Currently, this is not true if rapidyaml is included as a submodule and then add_subdirectory(). This only creates the target ryml. This causes issues: