Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: Add alias target for dependent project CMake consumption (#143)
This naming convention is common in other CMake projects. The presence of `::` in the identifier results in fail-fast behavior; when a user calls `target_link_libraries` or similar, `nfd::nfd` MUST be an existing target at configure time, but `nfd` might have been a system library. As a result, the latter would appear to work until the linker fails to find a library by that name. This is not a breaking change - plain `nfd` is still accessible.
- Loading branch information