diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-11-05 01:44:53 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-11-05 01:47:05 +0100 |
commit | 456fab5b1126b3cb42ee4f580da6315c3bb5c463 (patch) | |
tree | aae662e478040233e35eda42e7578e3ceb1977b9 | |
parent | f4999a63a54d726a4c4e0bca45b740b310c9d941 (diff) | |
download | nncmpp-456fab5b1126b3cb42ee4f580da6315c3bb5c463.tar.gz nncmpp-456fab5b1126b3cb42ee4f580da6315c3bb5c463.tar.xz nncmpp-456fab5b1126b3cb42ee4f580da6315c3bb5c463.zip |
CMakeLists.txt: install the contrib directory
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 00b1d03..c52334d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,6 +68,7 @@ add_threads (${PROJECT_NAME}) include (GNUInstallDirs) install (TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR}) install (FILES LICENSE DESTINATION ${CMAKE_INSTALL_DOCDIR}) +install (DIRECTORY contrib DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}) # Generate documentation from program help find_program (HELP2MAN_EXECUTABLE help2man) |