bfgroup / Lyra

A simple to use, composable, command line parser for C++ 11 and beyond
https://bfgroup.github.io/Lyra/
Boost Software License 1.0
471 stars 56 forks source link

Fix CMake ALIAS target case #54

Closed tusharpm closed 2 years ago

tusharpm commented 2 years ago

Issue The installed CMake target bfg::lyra (lower-case l) is different from the defined alias bfg::Lyra (upper-case L).

Change description Effective Modern CMake recommends keeping a matching target name for the same CMake tree and as an external package. This change makes the usage of the library consistent (bfg::lyra) for both cases.

Fixes #43.