summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/CMakeLists.txt
blob: fc204c387331bf1e1f715e3ed291dd11f1e294b8 (plain)
1
2
3
4
5
6
7
8
9
10
file( GLOB _man_files *.3 )

if( _man_files )
    INSTALL(
        FILES ${_man_files}
        DESTINATION ${MAN_INSTALL_DIR}/man3
        COMPONENT doc
    )
endif()