Actually make a2x optional

We might not even write man pages tbh
This commit is contained in:
Drew DeVault 2017-06-20 18:52:13 -04:00
parent c2d0090ad7
commit d1493b2391
1 changed files with 29 additions and 27 deletions

View File

@ -1,5 +1,6 @@
find_package(A2X REQUIRED) find_package(A2X)
if (A2X_FOUND)
add_custom_target(man ALL) add_custom_target(man ALL)
function(add_manpage name section) function(add_manpage name section)
@ -29,3 +30,4 @@ function(add_manpage name section)
COMPONENT documentation COMPONENT documentation
) )
endfunction() endfunction()
endif()