FreeRDP/cmake/InstallFreeRDPMan.cmake
Kyle Evans 92a8e28f20 Follow OpenBSD convention when installing manpages on FreeBSD
Both OS install third party man pages into ${PREFIX}/man/man${SECTION}, rather
than the convention established in the base system of share/man/man${SECTION}.
2018-05-02 09:31:19 -05:00

10 lines
291 B
CMake

function(install_freerdp_man manpage section)
if(WITH_MANPAGES)
if(OPENBSD OR FREEBSD)
install(FILES ${manpage} DESTINATION man/man${section})
else()
install(FILES ${manpage} DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/man/man${section})
endif()
endif()
endfunction()