summaryrefslogtreecommitdiffstats
path: root/doc/man/CMakeLists.txt
blob: db8bb9c116a0a5cfc285434b37f2f8ea2f9a03f1 (plain)
1
2
3
4
5
6
7
8
9
file( GLOB _man_files *.1 )
if( _man_files )
    INSTALL(
        FILES ${_man_files}
        DESTINATION ${MAN_INSTALL_DIR}/man1
        COMPONENT doc
    )
endif()