mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-12-28 03:45:02 +01:00
14 lines
212 B
CMake
14 lines
212 B
CMake
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})
|