diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-11-01 04:35:36 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-11-01 04:35:36 +0100 |
commit | 8480b74010254a23768085796ef0518becce1df6 (patch) | |
tree | f8bab472333881dbfdd28457a92e1e59f8c391c4 | |
parent | fc5dea02b6f44fc33ed831879ce280c45f9e1895 (diff) | |
download | rneovim-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.txt | 13 |
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 |