handle libuv case when we don't have it (#1403)

* add case for cmake when libuv is not found

* update error case in cmake
pull/1433/head
Jeff 4 years ago committed by GitHub
parent 4354a270c0
commit 32f4287df6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -41,7 +41,10 @@ elseif(DOWNLOAD_UV)
add_definitions(-D_LARGEFILE_SOURCE)
add_definitions(-D_FILE_OFFSET_BITS=64)
endif()
else()
message(FATAL_ERROR "libuv not found use -DDOWNLOAD_UV=FORCE to use the submodule")
endif()
include_directories(${LIBUV_INCLUDE_DIRS})
if(EMBEDDED_CFG OR ${CMAKE_SYSTEM_NAME} MATCHES "Linux")

Loading…
Cancel
Save