From 6e06f4795a6bd49a55456208dfec987c0498994b Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 1 Jul 2019 03:26:05 +0200 Subject: [PATCH] build: LibLUV: update required version [ci skip] (#10381) Required after d33aaa0f5. Does not really make a difference, since the VERSION is not handled with our FindLibLUV (due to missing pkg-config information (https://github.com/luvit/luv/issues/354)). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e729e1bf0..832e37436f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -379,7 +379,7 @@ include_directories(SYSTEM ${LIBUV_INCLUDE_DIRS}) find_package(Msgpack 1.0.0 REQUIRED) include_directories(SYSTEM ${MSGPACK_INCLUDE_DIRS}) -find_package(LibLUV 1.29.1 REQUIRED) +find_package(LibLUV 1.30.0 REQUIRED) include_directories(SYSTEM ${LIBLUV_INCLUDE_DIRS}) # Note: The test lib requires LuaJIT; it will be skipped if LuaJIT is missing.