2020-03-23 21:44:29 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2020-03-23 21:44:29 +08:00
|
|
|
###########################################################################
|
2024-05-20 00:49:42 +08:00
|
|
|
|
2024-01-24 20:25:15 +08:00
|
|
|
if(BUILD_LIBCURL_DOCS)
|
|
|
|
add_subdirectory(libcurl)
|
|
|
|
endif()
|
|
|
|
if(ENABLE_CURL_MANUAL AND BUILD_CURL_EXE)
|
|
|
|
add_subdirectory(cmdline-opts)
|
|
|
|
endif()
|
2024-03-27 17:56:24 +08:00
|
|
|
|
|
|
|
if(BUILD_MISC_DOCS)
|
|
|
|
foreach(_man_misc IN ITEMS "curl-config" "mk-ca-bundle")
|
|
|
|
set(_man_target "${CURL_BINARY_DIR}/docs/${_man_misc}.1")
|
|
|
|
add_custom_command(OUTPUT "${_man_target}"
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
COMMAND "${PERL_EXECUTABLE}" ${PROJECT_SOURCE_DIR}/scripts/cd2nroff "${_man_misc}.md" > "${_man_target}"
|
2024-04-05 03:33:49 +08:00
|
|
|
DEPENDS "${_man_misc}.md"
|
2024-03-27 17:56:24 +08:00
|
|
|
VERBATIM
|
|
|
|
)
|
2024-04-09 18:17:22 +08:00
|
|
|
add_custom_target("curl-generate-${_man_misc}.1" ALL DEPENDS "${_man_target}")
|
2024-03-27 17:56:24 +08:00
|
|
|
if(NOT CURL_DISABLE_INSTALL)
|
|
|
|
install(FILES "${_man_target}" DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|