xref: /curl/tests/libtest/CMakeLists.txt (revision 84338c4d)
1#***************************************************************************
2#                                  _   _ ____  _
3#  Project                     ___| | | |  _ \| |
4#                             / __| | | | |_) | |
5#                            | (__| |_| |  _ <| |___
6#                             \___|\___/|_| \_\_____|
7#
8# Copyright (C) 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# SPDX-License-Identifier: curl
22#
23###########################################################################
24set(TARGET_LABEL_PREFIX "Test ")
25
26function(setup_test TEST_NAME)          # ARGN are the files in the test
27
28  if(LIB_SELECTED STREQUAL LIB_STATIC)
29    # These are part of the libcurl static lib. Do not compile/link them again.
30    list(REMOVE_ITEM ARGN ${WARNLESS} ${MULTIBYTE} ${TIMEDIFF})
31  endif()
32
33  add_executable(${TEST_NAME} EXCLUDE_FROM_ALL ${ARGN})
34  add_dependencies(testdeps ${TEST_NAME})
35  string(TOUPPER ${TEST_NAME} UPPER_TEST_NAME)
36
37  include_directories(
38    ${CURL_SOURCE_DIR}/lib          # To be able to reach "curl_setup_once.h"
39    ${CURL_BINARY_DIR}/lib          # To be able to reach "curl_config.h"
40    ${CURL_BINARY_DIR}/include      # To be able to reach "curl/curl.h"
41    ${CURL_SOURCE_DIR}/tests/libtest # To be able to build generated tests
42    )
43  if(USE_ARES)
44    include_directories(${CARES_INCLUDE_DIR})
45  endif()
46
47  target_link_libraries(${TEST_NAME} ${LIB_SELECTED} ${CURL_LIBS})
48
49  set_target_properties(${TEST_NAME}
50    PROPERTIES COMPILE_DEFINITIONS ${UPPER_TEST_NAME})
51  set_target_properties(${TEST_NAME}
52    PROPERTIES PROJECT_LABEL "${TARGET_LABEL_PREFIX}${TEST_NAME}")
53endfunction()
54
55
56transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
57include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake)
58
59foreach(TEST_NAME ${noinst_PROGRAMS})
60  if(DEFINED ${TEST_NAME}_SOURCES)
61    setup_test(${TEST_NAME} ${${TEST_NAME}_SOURCES})
62  else()
63    setup_test(${TEST_NAME} ${nodist_${TEST_NAME}_SOURCES})
64  endif()
65endforeach()
66
67# Allows for hostname override to make tests machine independent.
68# TODO this cmake build assumes a shared build, detect static linking here!
69if(NOT WIN32)
70  add_library(hostname MODULE EXCLUDE_FROM_ALL sethostname.c)
71  add_dependencies(testdeps hostname)
72  # Output to .libs for compatibility with autotools, the test data expects a
73  # library at (tests)/libtest/.libs/libhostname.so
74  set_target_properties(hostname PROPERTIES
75      LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/.libs)
76  if(HIDES_CURL_PRIVATE_SYMBOLS)
77    set_property(TARGET hostname APPEND PROPERTY COMPILE_DEFINITIONS "CURL_HIDDEN_SYMBOLS")
78    set_property(TARGET hostname APPEND PROPERTY COMPILE_FLAGS ${CURL_CFLAG_SYMBOLS_HIDE})
79  endif()
80endif()
81
82add_custom_command(
83  OUTPUT lib1521.c
84  COMMAND ${PERL_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/mk-lib1521.pl < ${CURL_SOURCE_DIR}/include/curl/curl.h > lib1521.c
85  DEPENDS
86    "${CMAKE_CURRENT_SOURCE_DIR}/mk-lib1521.pl"
87    "${CURL_SOURCE_DIR}/include/curl/curl.h"
88  VERBATIM)
89