aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-11-01 04:35:36 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-11-01 04:35:36 +0100
commit8480b74010254a23768085796ef0518becce1df6 (patch)
treef8bab472333881dbfdd28457a92e1e59f8c391c4
parentfc5dea02b6f44fc33ed831879ce280c45f9e1895 (diff)
downloadrneovim-8480b74010254a23768085796ef0518becce1df6.tar.gz
rneovim-8480b74010254a23768085796ef0518becce1df6.tar.bz2
rneovim-8480b74010254a23768085796ef0518becce1df6.zip
build/win: LibuvCMakeLists.txt: adapt to moved headers
Headers were moved in v1.21.0 https://github.com/libuv/libuv/commit/99ae3edf28fd5c848e886e41ac3f4bd40538e24d
-rw-r--r--third-party/cmake/LibuvCMakeLists.txt13
1 files 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