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.
|
|
|
|
#
|
2009-06-10 01:29:16 +08:00
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2020-03-23 21:44:29 +08:00
|
|
|
###########################################################################
|
2009-06-10 01:29:16 +08:00
|
|
|
set(TARGET_LABEL_PREFIX "Test server ")
|
2009-04-07 05:05:44 +08:00
|
|
|
|
2017-07-19 00:46:53 +08:00
|
|
|
if(MSVC)
|
2019-11-30 16:29:36 +08:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4306")
|
2017-07-19 00:46:53 +08:00
|
|
|
endif()
|
|
|
|
|
2009-06-10 01:29:16 +08:00
|
|
|
function(SETUP_EXECUTABLE TEST_NAME) # ARGN are the files in the test
|
2020-05-10 08:10:20 +08:00
|
|
|
add_executable(${TEST_NAME} EXCLUDE_FROM_ALL ${ARGN})
|
|
|
|
add_dependencies(testdeps ${TEST_NAME})
|
2009-06-10 01:29:16 +08:00
|
|
|
string(TOUPPER ${TEST_NAME} UPPER_TEST_NAME)
|
2009-04-07 05:05:44 +08:00
|
|
|
|
2009-06-10 01:29:16 +08:00
|
|
|
include_directories(
|
2013-01-07 02:06:49 +08:00
|
|
|
${CURL_SOURCE_DIR}/lib # To be able to reach "curl_setup_once.h"
|
|
|
|
${CURL_BINARY_DIR}/lib # To be able to reach "curl_config.h"
|
2017-05-22 15:05:10 +08:00
|
|
|
${CURL_BINARY_DIR}/include # To be able to reach "curl/curl.h"
|
2022-10-19 17:40:11 +08:00
|
|
|
${CURL_SOURCE_DIR}/src # To be able to reach "tool_xattr.h"
|
2009-06-10 01:29:16 +08:00
|
|
|
)
|
2014-11-06 08:32:45 +08:00
|
|
|
if(USE_ARES)
|
2009-07-15 03:03:31 +08:00
|
|
|
include_directories(${CARES_INCLUDE_DIR})
|
2010-02-15 03:40:18 +08:00
|
|
|
endif()
|
2014-08-22 23:02:59 +08:00
|
|
|
|
|
|
|
target_link_libraries(${TEST_NAME} ${CURL_LIBS})
|
2009-04-07 05:05:44 +08:00
|
|
|
|
2009-06-10 01:29:16 +08:00
|
|
|
# Test servers simply are standalone programs that do not use libcurl
|
2018-02-24 07:29:01 +08:00
|
|
|
# library. For convenience and to ease portability of these servers,
|
2009-06-10 01:29:16 +08:00
|
|
|
# some source code files from the libcurl subdirectory are also used
|
|
|
|
# to build the servers. In order to achieve proper linkage of these
|
|
|
|
# files on Win32 targets it is necessary to build the test servers
|
|
|
|
# with CURL_STATICLIB defined, independently of how libcurl is built.
|
2023-06-22 17:24:37 +08:00
|
|
|
set_target_properties(${TEST_NAME} PROPERTIES
|
|
|
|
COMPILE_DEFINITIONS CURL_STATICLIB) # ${UPPER_TEST_NAME}
|
2010-02-15 03:40:18 +08:00
|
|
|
set_target_properties(${TEST_NAME} PROPERTIES
|
2009-06-10 01:29:16 +08:00
|
|
|
PROJECT_LABEL "${TARGET_LABEL_PREFIX}${TEST_NAME}")
|
|
|
|
endfunction()
|
2009-04-07 05:05:44 +08:00
|
|
|
|
|
|
|
|
2010-02-15 03:40:18 +08:00
|
|
|
transform_makefile_inc("Makefile.inc"
|
2009-06-10 01:29:16 +08:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
|
|
|
|
include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake)
|
2009-04-08 05:59:15 +08:00
|
|
|
|
2009-06-10 01:29:16 +08:00
|
|
|
foreach(EXECUTABLE_NAME ${noinst_PROGRAMS})
|
|
|
|
setup_executable(${EXECUTABLE_NAME} ${${EXECUTABLE_NAME}_SOURCES})
|
|
|
|
endforeach()
|
2009-04-08 05:59:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
# SET(useful
|
2009-06-10 01:29:16 +08:00
|
|
|
# getpart.c getpart.h
|
2013-01-04 09:50:28 +08:00
|
|
|
# ${CURL_SOURCE_DIR}/lib/strequal.c
|
|
|
|
# ${CURL_SOURCE_DIR}/lib/base64.c
|
|
|
|
# ${CURL_SOURCE_DIR}/lib/mprintf.c
|
|
|
|
# ${CURL_SOURCE_DIR}/lib/memdebug.c
|
|
|
|
# ${CURL_SOURCE_DIR}/lib/timeval.c
|
2009-04-08 05:59:15 +08:00
|
|
|
# )
|
|
|
|
|
|
|
|
# SETUP_EXECUTABLE(sws sws.c util.c util.h ${useful})
|
|
|
|
# SETUP_EXECUTABLE(resolve resolve.c util.c util.h ${useful})
|
2013-01-04 09:50:28 +08:00
|
|
|
# SETUP_EXECUTABLE(sockfilt sockfilt.c util.c util.h ${useful} ${CURL_SOURCE_DIR}/lib/inet_pton.c)
|
2009-04-08 05:59:15 +08:00
|
|
|
# SETUP_EXECUTABLE(getpart testpart.c ${useful})
|
2013-01-04 09:50:28 +08:00
|
|
|
# SETUP_EXECUTABLE(tftpd tftpd.c util.c util.h ${useful} tftp.h)
|