mirror of
https://github.com/minetest/minetest.git
synced 2025-03-14 06:12:36 +01:00
Warn when building without cURL
This commit is contained in:
@ -46,6 +46,15 @@ else()
|
||||
mark_as_advanced(CLEAR CURL_LIBRARY CURL_INCLUDE_DIR)
|
||||
endif()
|
||||
|
||||
if(NOT USE_CURL)
|
||||
if(BUILD_CLIENT)
|
||||
message(WARNING "cURL is required to load the server list")
|
||||
endif()
|
||||
if(BUILD_SERVER)
|
||||
message(WARNING "cURL is required to announce to the server list")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
||||
option(ENABLE_GETTEXT "Use GetText for internationalization" FALSE)
|
||||
set(USE_GETTEXT FALSE)
|
||||
|
Reference in New Issue
Block a user