diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-12 12:27:54 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-12 12:27:54 -0500 |
commit | 677a3f42c0f0821ddeed34728c8708fa4d0742cc (patch) | |
tree | 7a32455e9cfbe9ee761f7ddaef0035236fe4b097 | |
parent | a44eec1789bc4e012e7671c112a39a417c340f9a (diff) | |
parent | 71984d4126b7ea6a0a218ad7e9c8d92b1a51bb29 (diff) | |
download | rneovim-677a3f42c0f0821ddeed34728c8708fa4d0742cc.tar.gz rneovim-677a3f42c0f0821ddeed34728c8708fa4d0742cc.tar.bz2 rneovim-677a3f42c0f0821ddeed34728c8708fa4d0742cc.zip |
Merge pull request #1642 from fwalch/msgpack-glob
CMake: Remove shared libraries for messagepack.
-rw-r--r-- | third-party/cmake/InstallMsgpack.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third-party/cmake/InstallMsgpack.cmake b/third-party/cmake/InstallMsgpack.cmake index eda77f3b84..406f299723 100644 --- a/third-party/cmake/InstallMsgpack.cmake +++ b/third-party/cmake/InstallMsgpack.cmake @@ -6,7 +6,7 @@ if(NOT res EQUAL 0) message(FATAL_ERROR "Installing msgpack failed.") endif() -file(GLOB FILES_TO_REMOVE ${REMOVE_FILE_GLOB}) +file(GLOB_RECURSE FILES_TO_REMOVE ${REMOVE_FILE_GLOB}) if(FILES_TO_REMOVE) file(REMOVE ${FILES_TO_REMOVE}) endif() |