10 lines
280 B
CMake
10 lines
280 B
CMake
|
function(install_freerdp_man manpage section)
|
||
|
if(WITH_MANPAGES)
|
||
|
if(OPENBSD)
|
||
|
install(FILES ${manpage} DESTINATION man/man${section})
|
||
|
else()
|
||
|
install(FILES ${manpage} DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/man/man${section})
|
||
|
endif()
|
||
|
endif()
|
||
|
endfunction()
|