summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorChristoph Gysin <[email protected]>2015-12-01 22:22:39 +0200
committerChristoph Gysin <[email protected]>2015-12-01 22:47:22 +0200
commit4277070a7b92b5aad7c08beb876f7460fe268f60 (patch)
treebef53364575ce4ccf283fa9dbc6f3cd727979874 /CMakeLists.txt
parent297d8b3f02a97c8b23fedd4185016e785f7e2fda (diff)
cmake: extract add_manpage()
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt32
1 files changed, 1 insertions, 31 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 48f03e2e..4d828153 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -50,7 +50,6 @@ add_subdirectory(swaybar)
find_package(XKBCommon REQUIRED)
find_package(WLC REQUIRED)
-find_package(A2X REQUIRED)
find_package(PCRE REQUIRED)
find_package(Wayland REQUIRED)
find_package(JsonC REQUIRED)
@@ -98,36 +97,7 @@ install(
COMPONENT configuration
)
-add_custom_target(man ALL)
-
-function(add_manpage name section)
- add_custom_command(
- OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${name}.${section}
- COMMAND ${A2X_COMMAND}
- --no-xmllint
- --doctype manpage
- --format manpage
- -D ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
- ${CMAKE_CURRENT_SOURCE_DIR}/${name}.${section}.txt
- DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${name}.${section}.txt
- COMMENT Generating manpage for ${name}.${section}
- )
-
- add_custom_target(man-${name}.${section}
- DEPENDS
- ${CMAKE_CURRENT_BINARY_DIR}/${name}.${section}
- )
- add_dependencies(man
- man-${name}.${section}
- )
-
- install(
- FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${name}.${section}
- DESTINATION share/man/man${section}
- COMPONENT documentation
- )
-endfunction()
-
+include(Manpage)
add_manpage(sway 1)
add_manpage(sway 5)
add_manpage(swaymsg 1)