@@ -39,7 +39,7 @@ add_library (https-schannel STATIC EXCLUDE_FROM_ALL
39
39
)
40
40
41
41
add_library (https-nsurl STATIC EXCLUDE_FROM_ALL
42
- macos /NSURLClient.mm
42
+ apple /NSURLClient.mm
43
43
)
44
44
45
45
add_library (https-android STATIC EXCLUDE_FROM_ALL
@@ -51,31 +51,31 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
51
51
option (USE_CURL_BACKEND "Use the libcurl backend" ON )
52
52
option (USE_OPENSSL_BACKEND "Use the openssl backend" ON )
53
53
option (USE_SCHANNEL_BACKEND "Use the schannel backend (windows-only)" OFF )
54
- option (USE_NSURL_BACKEND "Use the NSUrl backend (macos -only)" OFF )
54
+ option (USE_NSURL_BACKEND "Use the NSUrl backend (apple -only)" OFF )
55
55
option (USE_ANDROID_BACKEND "Use the Android Java backend (Android-only)" OFF )
56
56
57
57
option (USE_WINSOCK "Use winsock instead of BSD sockets (windows-only)" OFF )
58
58
elseif (WIN32 )
59
59
option (USE_CURL_BACKEND "Use the libcurl backend" OFF )
60
60
option (USE_OPENSSL_BACKEND "Use the openssl backend" OFF )
61
61
option (USE_SCHANNEL_BACKEND "Use the schannel backend (windows-only)" ON )
62
- option (USE_NSURL_BACKEND "Use the NSUrl backend (macos -only)" OFF )
62
+ option (USE_NSURL_BACKEND "Use the NSUrl backend (apple -only)" OFF )
63
63
option (USE_ANDROID_BACKEND "Use the Android Java backend (Android-only)" OFF )
64
64
65
65
option (USE_WINSOCK "Use winsock instead of BSD sockets (windows-only)" ON )
66
66
elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin" )
67
67
option (USE_CURL_BACKEND "Use the libcurl backend" OFF )
68
68
option (USE_OPENSSL_BACKEND "Use the openssl backend" OFF )
69
69
option (USE_SCHANNEL_BACKEND "Use the schannel backend (windows-only)" OFF )
70
- option (USE_NSURL_BACKEND "Use the NSUrl backend (macos -only)" ON )
70
+ option (USE_NSURL_BACKEND "Use the NSUrl backend (apple -only)" ON )
71
71
option (USE_ANDROID_BACKEND "Use the Android Java backend (Android-only)" OFF )
72
72
73
73
option (USE_WINSOCK "Use winsock instead of BSD sockets (windows-only)" OFF )
74
74
elseif (ANDROID )
75
75
option (USE_CURL_BACKEND "Use the libcurl backend" OFF )
76
76
option (USE_OPENSSL_BACKEND "Use the openssl backend" OFF )
77
77
option (USE_SCHANNEL_BACKEND "Use the schannel backend (windows-only)" OFF )
78
- option (USE_NSURL_BACKEND "Use the NSUrl backend (macos -only)" OFF )
78
+ option (USE_NSURL_BACKEND "Use the NSUrl backend (apple -only)" OFF )
79
79
option (USE_ANDROID_BACKEND "Use the Android Java backend (Android-only)" ON )
80
80
81
81
option (USE_WINSOCK "Use winsock instead of BSD sockets (windows-only)" OFF )
0 commit comments