mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Externals: Add libcurl.
This commit is contained in:
13
Externals/curl/lib/CMakeLists.txt
vendored
Normal file
13
Externals/curl/lib/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
set(LIB_NAME libcurl)
|
||||
|
||||
add_definitions(-DHAVE_CONFIG_H)
|
||||
include_directories(.)
|
||||
|
||||
file(GLOB SRCS *.c vauth/*.c vtls/*.c)
|
||||
add_library(
|
||||
curl
|
||||
STATIC
|
||||
${SRCS}
|
||||
)
|
||||
|
||||
target_link_libraries(curl ${MBEDTLS_LIBRARIES})
|
Reference in New Issue
Block a user