From 55ab76a1c0f63ebb735495a91066cbe01b6d0bb3 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sun, 27 Feb 2022 07:49:50 -0500 Subject: [PATCH] build: bump minimum version of luv to 1.43.0 This is required for the recent addition of lua loop threading (luv_set_thread). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 08d52eb071..eae2d75e3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -387,7 +387,7 @@ include_directories(SYSTEM ${LIBUV_INCLUDE_DIRS}) find_package(Msgpack 1.0.0 REQUIRED) include_directories(SYSTEM ${MSGPACK_INCLUDE_DIRS}) -find_package(LibLUV 1.30.0 REQUIRED) +find_package(LibLUV 1.43.0 REQUIRED) include_directories(SYSTEM ${LIBLUV_INCLUDE_DIRS}) find_package(TreeSitter REQUIRED)