Tests that link flags propagate correctly from dependency to
dependency: unlike compile flags, they do. You don't have to do
anything special, and the libraries are "sticky". (If cmake builds
lib A, and A takes -lrt on the link line, and you
target_link_libraries(B A), B will automagically get -lrt on its link
line.
These tests probably only work on linux.