From 8480b74010254a23768085796ef0518becce1df6 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 1 Nov 2018 04:35:36 +0100 Subject: build/win: LibuvCMakeLists.txt: adapt to moved headers Headers were moved in v1.21.0 https://github.com/libuv/libuv/commit/99ae3edf28fd5c848e886e41ac3f4bd40538e24d --- third-party/cmake/LibuvCMakeLists.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/third-party/cmake/LibuvCMakeLists.txt b/third-party/cmake/LibuvCMakeLists.txt index c9b7c56e7b..0432319834 100644 --- a/third-party/cmake/LibuvCMakeLists.txt +++ b/third-party/cmake/LibuvCMakeLists.txt @@ -13,14 +13,17 @@ if(BUILD_SHARED_LIBS) endif() install(FILES - include/tree.h include/uv.h - include/uv-version.h - include/uv-errno.h - include/uv-threadpool.h - include/uv-win.h DESTINATION include) +install(FILES + include/uv/errno.h + include/uv/threadpool.h + include/uv/tree.h + include/uv/version.h + include/uv/win.h + DESTINATION include/uv) + include(GNUInstallDirs) install(TARGETS uv PUBLIC_HEADER -- cgit