mirror of
https://github.com/curl/curl.git
synced 2026-07-22 21:37:17 +03:00
parent
415d6fa7da
commit
1cba36d216
4 changed files with 4 additions and 4 deletions
|
|
@ -19,7 +19,7 @@
|
|||
# KIND, either express or implied.
|
||||
#
|
||||
###########################################################################
|
||||
set(LIB_NAME libcurl)
|
||||
set(LIB_NAME libcurl CACHE STRING "Basename of the curl library")
|
||||
|
||||
if(BUILD_SHARED_LIBS)
|
||||
set(CURL_STATICLIB NO)
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ include_directories(
|
|||
)
|
||||
|
||||
#Build curl executable
|
||||
target_link_libraries(${EXE_NAME} libcurl ${CURL_LIBS})
|
||||
target_link_libraries(${EXE_NAME} ${LIB_NAME} ${CURL_LIBS})
|
||||
|
||||
################################################################################
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ function(setup_test TEST_NAME) # ARGN are the files in the test
|
|||
include_directories(${CARES_INCLUDE_DIR})
|
||||
endif()
|
||||
|
||||
target_link_libraries(${TEST_NAME} libcurl ${CURL_LIBS})
|
||||
target_link_libraries(${TEST_NAME} ${LIB_NAME} ${CURL_LIBS})
|
||||
|
||||
set_target_properties(${TEST_NAME}
|
||||
PROPERTIES COMPILE_DEFINITIONS ${UPPER_TEST_NAME})
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ foreach(_testfile ${UT_SRC})
|
|||
get_filename_component(_testname ${_testfile} NAME_WE)
|
||||
add_executable(${_testname} EXCLUDE_FROM_ALL ${_testfile} ${UT_COMMON_FILES})
|
||||
#add_dependencies(testdeps ${_testname})
|
||||
target_link_libraries(${_testname} libcurl ${CURL_LIBS})
|
||||
target_link_libraries(${_testname} ${LIB_NAME} ${CURL_LIBS})
|
||||
set_target_properties(${_testname}
|
||||
PROPERTIES COMPILE_DEFINITIONS "UNITTESTS")
|
||||
endforeach()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue