mirror of https://github.com/c-ares/c-ares.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
477 B
19 lines
477 B
# Copyright (C) The c-ares project and its contributors |
|
# SPDX-License-Identifier: MIT |
|
# Headers and Man Pages installation target |
|
IF (CARES_INSTALL) |
|
# ManPages |
|
FILE (GLOB DevelManPages "." "*.3") |
|
INSTALL (FILES ${DevelManPages} |
|
DESTINATION ${CMAKE_INSTALL_MANDIR}/man3 |
|
COMPONENT Devel |
|
) |
|
|
|
IF (CARES_BUILD_TOOLS) |
|
FILE (GLOB ToolManPages "." "*.1") |
|
INSTALL (FILES ${ToolManPages} |
|
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 |
|
COMPONENT Tools |
|
) |
|
ENDIF () |
|
ENDIF ()
|
|
|