mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
Enable server build when no builds are enabled
This commit is contained in:
@ -27,6 +27,12 @@ set(CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}" CACHE STRING
|
||||
mark_as_advanced(EXECUTABLE_OUTPUT_PATH LIBRARY_OUTPUT_PATH)
|
||||
|
||||
|
||||
if(NOT (BUILD_CLIENT OR BUILD_SERVER))
|
||||
message(WARNING "Neither BUILD_CLIENT nor BUILD_SERVER is set! Setting BUILD_SERVER=true")
|
||||
set(BUILD_SERVER TRUE)
|
||||
endif()
|
||||
|
||||
|
||||
option(ENABLE_CURL "Enable cURL support for fetching media" TRUE)
|
||||
set(USE_CURL FALSE)
|
||||
|
||||
|
Reference in New Issue
Block a user