This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Description
Currently there's no support for header-only libraries, especially when using the find_library API.
The reason for this is that the find_library fails if it doesn't finds any source files, however, that's always the case for header-only libraries, and can be marked as "false-positive".
Solution would be simply to pass an option to the function - HEADER_ONLY, which will hint the framework to ignore sources.
Edit: CMake can't compile nor link header-only libraries, and must use the INTERFACE keyword instead. This leads to a far more complicated solution, which will probably require a separate function.