1# Copyright (C) The c-ares project and its contributors 2# SPDX-License-Identifier: MIT 3# Headers and Man Pages installation target 4IF (CARES_INSTALL) 5 # ManPages 6 FILE (GLOB DevelManPages "." "*.3") 7 INSTALL (FILES ${DevelManPages} 8 DESTINATION ${CMAKE_INSTALL_MANDIR}/man3 9 COMPONENT Devel 10 ) 11 12 IF (CARES_BUILD_TOOLS) 13 FILE (GLOB ToolManPages "." "*.1") 14 INSTALL (FILES ${ToolManPages} 15 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 16 COMPONENT Tools 17 ) 18 ENDIF () 19ENDIF () 20