Skip to content

Commit e511282

Browse files
committedSep 1, 2015
Warn when building without cURL
1 parent 7419504 commit e511282

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎src/CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@ else()
4646
mark_as_advanced(CLEAR CURL_LIBRARY CURL_INCLUDE_DIR)
4747
endif()
4848

49+
if(NOT USE_CURL)
50+
if(BUILD_CLIENT)
51+
message(WARNING "cURL is required to load the server list")
52+
endif()
53+
if(BUILD_SERVER)
54+
message(WARNING "cURL is required to announce to the server list")
55+
endif()
56+
endif()
57+
4958

5059
option(ENABLE_GETTEXT "Use GetText for internationalization" FALSE)
5160
set(USE_GETTEXT FALSE)

0 commit comments

Comments
 (0)
Please sign in to comment.