From: Marius Gripsgard Date: Thu, 30 Dec 2021 02:01:58 +0000 (+0100) Subject: [PATCH] doc: Install man pages with cmake X-Git-Tag: archive/raspbian/1.22.1-1+rpi1^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=80f682227868ebb587ef2ade73e437749ce5f002;p=qbs.git [PATCH] doc: Install man pages with cmake Change-Id: Ibce74cf1b524c8c08b38dfc76549b4723ea705b3 Gbp-Pq: Name doc_Install_man_pages_with_cmake.diff --- diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 5b8ac763..04ff1247 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -26,3 +26,5 @@ add_qbs_documentation( ${_DOC_IMAGES_SOURCES} ${_DOC_TARGETS_SOURCES} ) + +add_subdirectory(man) diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt new file mode 100644 index 00000000..7e8247ed --- /dev/null +++ b/doc/man/CMakeLists.txt @@ -0,0 +1 @@ +install(FILES qbs.1 DESTINATION ${QBS_RESOURCES_INSTALL_DIR}/man/man1)