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.

17 lines
512 B

cmake_minimum_required(VERSION 3.10)
project(TestFindCURL C)
include(CTest)
find_package(CURL REQUIRED COMPONENTS HTTP)
add_definitions(-DCMAKE_EXPECTED_CURL_VERSION="${CURL_VERSION_STRING}")
add_executable(test_tgt main.c)
target_link_libraries(test_tgt CURL::libcurl)
add_test(NAME test_tgt COMMAND test_tgt)
add_executable(test_var main.c)
target_include_directories(test_var PRIVATE ${CURL_INCLUDE_DIRS})
target_link_libraries(test_var PRIVATE ${CURL_LIBRARIES})
add_test(NAME test_var COMMAND test_var)