daniele77 / cli

A library for interactive command line interfaces in modern C++
Boost Software License 1.0
1.24k stars 140 forks source link

Make use of GNUInstallDirs provided variables for installation dirs #84

Closed jobrud closed 4 years ago

jobrud commented 4 years ago

The current way how the cmake installation steps are done, won't work for Linux distributions which uses a different directory as 'lib' for libraries e.g. Arch Linux.

This pull request removes all hard-coded installation paths and uses instead the GNUInstallDirs provided variables. Check CMAKE Docu for more information.

daniele77 commented 4 years ago

Thank you very much.