1#*************************************************************************** 2# _ _ ____ _ 3# Project ___| | | | _ \| | 4# / __| | | | |_) | | 5# | (__| |_| | _ <| |___ 6# \___|\___/|_| \_\_____| 7# 8# Copyright (C) 2009 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. 9# 10# This software is licensed as described in the file COPYING, which 11# you should have received as part of this distribution. The terms 12# are also available at https://curl.se/docs/copyright.html. 13# 14# You may opt to use, copy, modify, merge, publish, distribute and/or sell 15# copies of the Software, and permit persons to whom the Software is 16# furnished to do so, under the terms of the COPYING file. 17# 18# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19# KIND, either express or implied. 20# 21########################################################################### 22set(TARGET_LABEL_PREFIX "Test server ") 23 24if(MSVC) 25 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4306") 26endif() 27 28function(SETUP_EXECUTABLE TEST_NAME) # ARGN are the files in the test 29 add_executable(${TEST_NAME} EXCLUDE_FROM_ALL ${ARGN}) 30 add_dependencies(testdeps ${TEST_NAME}) 31 string(TOUPPER ${TEST_NAME} UPPER_TEST_NAME) 32 33 include_directories( 34 ${CURL_SOURCE_DIR}/lib # To be able to reach "curl_setup_once.h" 35 ${CURL_BINARY_DIR}/lib # To be able to reach "curl_config.h" 36 ${CURL_BINARY_DIR}/include # To be able to reach "curl/curl.h" 37 ) 38 if(USE_ARES) 39 include_directories(${CARES_INCLUDE_DIR}) 40 endif() 41 42 target_link_libraries(${TEST_NAME} ${CURL_LIBS}) 43 44 # Test servers simply are standalone programs that do not use libcurl 45 # library. For convenience and to ease portability of these servers, 46 # some source code files from the libcurl subdirectory are also used 47 # to build the servers. In order to achieve proper linkage of these 48 # files on Win32 targets it is necessary to build the test servers 49 # with CURL_STATICLIB defined, independently of how libcurl is built. 50 if(BUILD_SHARED_LIBS) 51 set_target_properties(${TEST_NAME} PROPERTIES 52 COMPILE_DEFINITIONS CURL_STATICLIB) # ${UPPER_TEST_NAME} 53 endif() 54 set_target_properties(${TEST_NAME} PROPERTIES 55 PROJECT_LABEL "${TARGET_LABEL_PREFIX}${TEST_NAME}") 56endfunction() 57 58 59transform_makefile_inc("Makefile.inc" 60 "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake") 61include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake) 62 63foreach(EXECUTABLE_NAME ${noinst_PROGRAMS}) 64 setup_executable(${EXECUTABLE_NAME} ${${EXECUTABLE_NAME}_SOURCES}) 65endforeach() 66 67 68# SET(useful 69# getpart.c getpart.h 70# ${CURL_SOURCE_DIR}/lib/strequal.c 71# ${CURL_SOURCE_DIR}/lib/base64.c 72# ${CURL_SOURCE_DIR}/lib/mprintf.c 73# ${CURL_SOURCE_DIR}/lib/memdebug.c 74# ${CURL_SOURCE_DIR}/lib/timeval.c 75# ) 76 77# SETUP_EXECUTABLE(sws sws.c util.c util.h ${useful}) 78# SETUP_EXECUTABLE(resolve resolve.c util.c util.h ${useful}) 79# SETUP_EXECUTABLE(sockfilt sockfilt.c util.c util.h ${useful} ${CURL_SOURCE_DIR}/lib/inet_pton.c) 80# SETUP_EXECUTABLE(getpart testpart.c ${useful}) 81# SETUP_EXECUTABLE(tftpd tftpd.c util.c util.h ${useful} tftp.h) 82